Merge version_2 into main #4
@@ -1,54 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import "@/styles/globals.css";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "SoleStep - Premium Shoes for Every Occasion", description: "Discover premium footwear for running, casual wear, hiking, and formal occasions. Quality shoes with free shipping and 30-day returns.", keywords: "shoes, sneakers, running shoes, casual shoes, hiking boots, formal shoes, footwear, online shoe store", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "SoleStep - Premium Shoes for Every Occasion", description: "Discover premium footwear for every lifestyle. Quality shoes with excellent customer service.", siteName: "SoleStep", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/close-up-male-hands-tying-up-sport-shoes_1262-4792.jpg", alt: "Premium shoe collection from SoleStep"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "SoleStep - Premium Shoes", description: "Discover our premium shoe collection with fast shipping and 30-day returns.", images: ["http://img.b2bpic.net/free-photo/close-up-male-hands-tying-up-sport-shoes_1262-4792.jpg"],
|
||||
},
|
||||
};
|
||||
title: "SoleStep - Premium Shoes for Every Occasion", description: "Discover premium shoes designed for comfort, style, and performance. From athletic to casual, find your ideal pair today."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1416,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -56,17 +56,23 @@ export default function LandingPage() {
|
||||
buttonAnimation="slide-up"
|
||||
carouselItems={[
|
||||
{
|
||||
id: "1", imageSrc: "http://img.b2bpic.net/free-photo/close-up-male-hands-tying-up-sport-shoes_1262-4792.jpg", imageAlt: "Premium running shoe"},
|
||||
id: "1", imageSrc: "http://img.b2bpic.net/free-photo/close-up-male-hands-tying-up-sport-shoes_1262-4792.jpg", imageAlt: "Premium running shoe"
|
||||
},
|
||||
{
|
||||
id: "2", imageSrc: "http://img.b2bpic.net/free-photo/white-sneakers-woman-model_53876-97149.jpg?_wi=1", imageAlt: "Casual sneaker"},
|
||||
id: "2", imageSrc: "http://img.b2bpic.net/free-photo/white-sneakers-woman-model_53876-97149.jpg?_wi=1", imageAlt: "Casual sneaker"
|
||||
},
|
||||
{
|
||||
id: "3", imageSrc: "http://img.b2bpic.net/free-photo/sporty-man-training-outdoors-london_181624-28390.jpg?_wi=1", imageAlt: "Athletic performance shoe"},
|
||||
id: "3", imageSrc: "http://img.b2bpic.net/free-photo/sporty-man-training-outdoors-london_181624-28390.jpg?_wi=1", imageAlt: "Athletic performance shoe"
|
||||
},
|
||||
{
|
||||
id: "4", imageSrc: "http://img.b2bpic.net/free-photo/men-s-shoes-elegant-clothes-holiday-theme-wedding_78826-2242.jpg", imageAlt: "Elegant dress shoe"},
|
||||
id: "4", imageSrc: "http://img.b2bpic.net/free-photo/men-s-shoes-elegant-clothes-holiday-theme-wedding_78826-2242.jpg", imageAlt: "Elegant dress shoe"
|
||||
},
|
||||
{
|
||||
id: "5", imageSrc: "http://img.b2bpic.net/free-photo/close-up-couple-s-legs-keds-standing-street_176420-6843.jpg?_wi=1", imageAlt: "Comfort slip-on"},
|
||||
id: "5", imageSrc: "http://img.b2bpic.net/free-photo/close-up-couple-s-legs-keds-standing-street_176420-6843.jpg?_wi=1", imageAlt: "Comfort slip-on"
|
||||
},
|
||||
{
|
||||
id: "6", imageSrc: "http://img.b2bpic.net/free-photo/close-up-shoes-hiker-walking-forest-trail-with-sunlight-copy-space_1150-57134.jpg", imageAlt: "Durable hiking boot"},
|
||||
id: "6", imageSrc: "http://img.b2bpic.net/free-photo/close-up-shoes-hiker-walking-forest-trail-with-sunlight-copy-space_1150-57134.jpg", imageAlt: "Durable hiking boot"
|
||||
},
|
||||
]}
|
||||
autoPlay={true}
|
||||
autoPlayInterval={4000}
|
||||
@@ -82,16 +88,20 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
id: "1", title: "Premium Materials & Craftsmanship", tags: ["Quality", "Durability"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/great-custom-made-shoes-trendy-people-from-experienced-shoe-master_613910-3330.jpg", imageAlt: "Premium shoe materials"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/great-custom-made-shoes-trendy-people-from-experienced-shoe-master_613910-3330.jpg", imageAlt: "Premium shoe materials"
|
||||
},
|
||||
{
|
||||
id: "2", title: "Comfort Technology", tags: ["Innovation", "Support"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-woman-tying-shoelace-gym-floor_1262-3504.jpg", imageAlt: "Comfort technology display"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-woman-tying-shoelace-gym-floor_1262-3504.jpg", imageAlt: "Comfort technology display"
|
||||
},
|
||||
{
|
||||
id: "3", title: "Sustainable Practices", tags: ["Eco-Friendly", "Responsibility"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-sustainability-concept-assortment_23-2148996999.jpg", imageAlt: "Sustainable shoe production"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-sustainability-concept-assortment_23-2148996999.jpg", imageAlt: "Sustainable shoe production"
|
||||
},
|
||||
{
|
||||
id: "4", title: "Fast & Free Shipping", tags: ["Delivery", "Service"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/express-delivery-package-handover_23-2151994433.jpg", imageAlt: "Fast shipping service"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/express-delivery-package-handover_23-2151994433.jpg", imageAlt: "Fast shipping service"
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
@@ -136,15 +146,20 @@ export default function LandingPage() {
|
||||
<TestimonialCardTwelve
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Sarah Johnson", imageSrc: "http://img.b2bpic.net/free-photo/casual-smile-street-style-background-spring_1139-777.jpg", imageAlt: "Sarah Johnson"},
|
||||
id: "1", name: "Sarah Johnson", imageSrc: "http://img.b2bpic.net/free-photo/casual-smile-street-style-background-spring_1139-777.jpg", imageAlt: "Sarah Johnson"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Michael Chen", imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-smiling_1098-63.jpg", imageAlt: "Michael Chen"},
|
||||
id: "2", name: "Michael Chen", imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-smiling_1098-63.jpg", imageAlt: "Michael Chen"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Emily Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/lovable-woman-looking-front_197531-19779.jpg", imageAlt: "Emily Rodriguez"},
|
||||
id: "3", name: "Emily Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/lovable-woman-looking-front_197531-19779.jpg", imageAlt: "Emily Rodriguez"
|
||||
},
|
||||
{
|
||||
id: "4", name: "David Kim", imageSrc: "http://img.b2bpic.net/free-photo/smiling-millennial-man-looking-camera-cafe-headshot-portrait_1163-5163.jpg", imageAlt: "David Kim"},
|
||||
id: "4", name: "David Kim", imageSrc: "http://img.b2bpic.net/free-photo/smiling-millennial-man-looking-camera-cafe-headshot-portrait_1163-5163.jpg", imageAlt: "David Kim"
|
||||
},
|
||||
{
|
||||
id: "5", name: "Jessica Thompson", imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg", imageAlt: "Jessica Thompson"},
|
||||
id: "5", name: "Jessica Thompson", imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg", imageAlt: "Jessica Thompson"
|
||||
},
|
||||
]}
|
||||
cardTitle="Over 50,000 satisfied customers trust SoleStep for quality footwear"
|
||||
cardTag="Customer Reviews"
|
||||
@@ -162,7 +177,8 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"Runner's Digest", "Lifestyle Magazine", "Sports Weekly", "Fashion Forward", "Athletic Today", "Comfort Review", "Style Culture"]}
|
||||
"Runner's Digest", "Lifestyle Magazine", "Sports Weekly", "Fashion Forward", "Athletic Today", "Comfort Review", "Style Culture"
|
||||
]}
|
||||
speed={40}
|
||||
showCard={true}
|
||||
/>
|
||||
@@ -175,13 +191,17 @@ export default function LandingPage() {
|
||||
tag="Success"
|
||||
metrics={[
|
||||
{
|
||||
id: "1", value: "500K+", title: "Happy Customers", description: "Satisfied customers worldwide", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-colleagues-with-thumbs-up_23-2149008930.jpg", imageAlt: "Happy customers"},
|
||||
id: "1", value: "500K+", title: "Happy Customers", description: "Satisfied customers worldwide", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-colleagues-with-thumbs-up_23-2149008930.jpg", imageAlt: "Happy customers"
|
||||
},
|
||||
{
|
||||
id: "2", value: "98%", title: "Satisfaction Rate", description: "Customer satisfaction guarantee", imageSrc: "http://img.b2bpic.net/free-photo/close-up-executives-showing-thumbs-up_1098-1828.jpg", imageAlt: "Satisfaction rate"},
|
||||
id: "2", value: "98%", title: "Satisfaction Rate", description: "Customer satisfaction guarantee", imageSrc: "http://img.b2bpic.net/free-photo/close-up-executives-showing-thumbs-up_1098-1828.jpg", imageAlt: "Satisfaction rate"
|
||||
},
|
||||
{
|
||||
id: "3", value: "15+", title: "Years Legacy", description: "Trusted for over a decade", imageSrc: "http://img.b2bpic.net/free-photo/top-view-typesetting-parts_23-2149609848.jpg", imageAlt: "Company legacy"},
|
||||
id: "3", value: "15+", title: "Years Legacy", description: "Trusted for over a decade", imageSrc: "http://img.b2bpic.net/free-photo/top-view-typesetting-parts_23-2149609848.jpg", imageAlt: "Company legacy"
|
||||
},
|
||||
{
|
||||
id: "4", value: "200+", title: "Shoe Collections", description: "Diverse product range", imageSrc: "http://img.b2bpic.net/free-photo/rack-full-shoes-modern-house_1268-14356.jpg", imageAlt: "Product collections"},
|
||||
id: "4", value: "200+", title: "Shoe Collections", description: "Diverse product range", imageSrc: "http://img.b2bpic.net/free-photo/rack-full-shoes-modern-house_1268-14356.jpg", imageAlt: "Product collections"
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
@@ -196,17 +216,23 @@ export default function LandingPage() {
|
||||
tag="Help"
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "What is your return policy?", content: "We offer a 30-day money-back guarantee on all unworn shoes. If you're not completely satisfied, simply return them for a full refund or exchange."},
|
||||
id: "1", title: "What is your return policy?", content: "We offer a 30-day money-back guarantee on all unworn shoes. If you're not completely satisfied, simply return them for a full refund or exchange."
|
||||
},
|
||||
{
|
||||
id: "2", title: "How long does shipping take?", content: "Standard shipping typically takes 5-7 business days. We also offer express shipping options for 2-3 day delivery at checkout."},
|
||||
id: "2", title: "How long does shipping take?", content: "Standard shipping typically takes 5-7 business days. We also offer express shipping options for 2-3 day delivery at checkout."
|
||||
},
|
||||
{
|
||||
id: "3", title: "Do you ship internationally?", content: "Yes, we ship to over 100 countries worldwide. International shipping times vary by location but typically take 10-21 business days."},
|
||||
id: "3", title: "Do you ship internationally?", content: "Yes, we ship to over 100 countries worldwide. International shipping times vary by location but typically take 10-21 business days."
|
||||
},
|
||||
{
|
||||
id: "4", title: "How do I choose the right size?", content: "We provide a detailed size guide on each product page. We recommend measuring your foot and comparing with our chart. If unsure, order your typical size and use our free returns."},
|
||||
id: "4", title: "How do I choose the right size?", content: "We provide a detailed size guide on each product page. We recommend measuring your foot and comparing with our chart. If unsure, order your typical size and use our free returns."
|
||||
},
|
||||
{
|
||||
id: "5", title: "Are your shoes environmentally friendly?", content: "We're committed to sustainability. Most of our shoes use eco-friendly materials and ethical manufacturing practices. Check product details for specific sustainability information."},
|
||||
id: "5", title: "Are your shoes environmentally friendly?", content: "We're committed to sustainability. Most of our shoes use eco-friendly materials and ethical manufacturing practices. Check product details for specific sustainability information."
|
||||
},
|
||||
{
|
||||
id: "6", title: "Do you offer customization services?", content: "Yes! We offer custom colors and personalized engraving on select models. Contact our customer service team to discuss your custom shoe ideas."}
|
||||
id: "6", title: "Do you offer customization services?", content: "Yes! We offer custom colors and personalized engraving on select models. Contact our customer service team to discuss your custom shoe ideas."
|
||||
}
|
||||
]}
|
||||
textboxLayout="default"
|
||||
faqsAnimation="slide-up"
|
||||
@@ -218,7 +244,7 @@ export default function LandingPage() {
|
||||
<ContactSplit
|
||||
tag="Newsletter"
|
||||
title="Stay Updated"
|
||||
description="Subscribe to our newsletter for exclusive offers, new shoe releases, and fashion tips delivered straight to your inbox."
|
||||
description="Get 10% off your first order + early access to new collections. Subscribe to our newsletter for exclusive offers and new shoe releases delivered straight to your inbox."
|
||||
tagIcon={Mail}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
|
||||
Reference in New Issue
Block a user