Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
178
src/app/page.tsx
178
src/app/page.tsx
@@ -32,17 +32,11 @@ export default function LandingPage() {
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "Shop",
|
||||
id: "products",
|
||||
},
|
||||
name: "Shop", id: "products"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Contact", id: "contact"},
|
||||
]}
|
||||
brandName="StepUp"
|
||||
/>
|
||||
@@ -51,41 +45,26 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardCarousel
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
variant: "gradient-bars"}}
|
||||
title="Step Into Style"
|
||||
description="Premium collection of high-performance and casual footwear for everyday steps."
|
||||
buttons={[
|
||||
{
|
||||
text: "Shop Now",
|
||||
href: "#products",
|
||||
},
|
||||
text: "Shop Now", href: "#products"},
|
||||
]}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dark-blue-show-rock_52683-94821.jpg?_wi=1",
|
||||
imageAlt: "Premium Sneakers",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dark-blue-show-rock_52683-94821.jpg", imageAlt: "Premium Sneakers"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/earphones-with-minimalist-monochrome-background_23-2150763354.jpg",
|
||||
imageAlt: "Casual Shoes",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/earphones-with-minimalist-monochrome-background_23-2150763354.jpg", imageAlt: "Casual Shoes"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pretty-mother-s-day-assortment_23-2148888569.jpg",
|
||||
imageAlt: "Training Shoes",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pretty-mother-s-day-assortment_23-2148888569.jpg", imageAlt: "Training Shoes"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-wearing-futuristic-sneakers_23-2151005690.jpg",
|
||||
imageAlt: "Limited Edition",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-wearing-futuristic-sneakers_23-2151005690.jpg", imageAlt: "Limited Edition"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fathers-day-composition-with-copyspace_23-2147806826.jpg",
|
||||
imageAlt: "Sportswear",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fathers-day-composition-with-copyspace_23-2147806826.jpg", imageAlt: "Sportswear"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fit-young-brunette-female-wearing-shirt-with-naked-legs-sitting-black-white-cubes-gray-background-copy-space-high-quality-photo_132075-10096.jpg",
|
||||
imageAlt: "Luxury Footwear",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fit-young-brunette-female-wearing-shirt-with-naked-legs-sitting-black-white-cubes-gray-background-copy-space-high-quality-photo_132075-10096.jpg", imageAlt: "Luxury Footwear"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -98,41 +77,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Performance Runner",
|
||||
price: "₹2999",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-basketball-shoes_23-2150847378.jpg?_wi=1",
|
||||
},
|
||||
id: "1", name: "Performance Runner", price: "₹2999", imageSrc: "http://img.b2bpic.net/free-photo/close-up-basketball-shoes_23-2150847378.jpg"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Casual Sneakers",
|
||||
price: "₹2499",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fashion-shoes-sneaker_1203-8079.jpg",
|
||||
},
|
||||
id: "2", name: "Casual Sneakers", price: "₹2499", imageSrc: "http://img.b2bpic.net/free-photo/fashion-shoes-sneaker_1203-8079.jpg"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Sport Elite",
|
||||
price: "₹3499",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-athletic-woman-s-legs-with-copy-space_23-2148444908.jpg",
|
||||
},
|
||||
id: "3", name: "Sport Elite", price: "₹3499", imageSrc: "http://img.b2bpic.net/free-photo/front-view-athletic-woman-s-legs-with-copy-space_23-2148444908.jpg"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Urban Daily",
|
||||
price: "₹2799",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/white-canvas-sneakers-unisex-footwear-fashion_53876-106044.jpg",
|
||||
},
|
||||
id: "4", name: "Urban Daily", price: "₹2799", imageSrc: "http://img.b2bpic.net/free-photo/white-canvas-sneakers-unisex-footwear-fashion_53876-106044.jpg"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Classic Trainer",
|
||||
price: "₹2299",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/outdoor-hiking-equipment_1387-662.jpg",
|
||||
},
|
||||
id: "5", name: "Classic Trainer", price: "₹2299", imageSrc: "http://img.b2bpic.net/free-photo/outdoor-hiking-equipment_1387-662.jpg"},
|
||||
{
|
||||
id: "6",
|
||||
name: "Pro Marathon",
|
||||
price: "₹3999",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-mal-training-trail_23-2148482742.jpg",
|
||||
},
|
||||
id: "6", name: "Pro Marathon", price: "₹3999", imageSrc: "http://img.b2bpic.net/free-photo/close-up-mal-training-trail_23-2148482742.jpg"},
|
||||
]}
|
||||
title="Featured Shoes"
|
||||
description="Discover our latest arrivals designed for comfort and style."
|
||||
@@ -146,28 +101,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Ergonomic Comfort",
|
||||
description: "Designed for all-day support with advanced cushioning tech.",
|
||||
bentoComponent: "reveal-icon",
|
||||
icon: Sparkles,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/model-white-high-top-sneakers-standing-chair_53876-97148.jpg",
|
||||
imageAlt: "Model in white high top sneakers standing on chair",
|
||||
title: "Ergonomic Comfort", description: "Designed for all-day support with advanced cushioning tech.", bentoComponent: "reveal-icon", icon: Sparkles,
|
||||
},
|
||||
{
|
||||
title: "Premium Materials",
|
||||
description: "High-quality leather and breathable fabrics for longevity.",
|
||||
bentoComponent: "reveal-icon",
|
||||
icon: Shield,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dark-blue-show-rock_52683-94821.jpg?_wi=2",
|
||||
imageAlt: "Model in white high top sneakers standing on chair",
|
||||
title: "Premium Materials", description: "High-quality leather and breathable fabrics for longevity.", bentoComponent: "reveal-icon", icon: Shield,
|
||||
},
|
||||
{
|
||||
title: "Modern Aesthetics",
|
||||
description: "Trendy designs that fit every occasion from office to gym.",
|
||||
bentoComponent: "reveal-icon",
|
||||
icon: Zap,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-basketball-shoes_23-2150847378.jpg?_wi=2",
|
||||
imageAlt: "Model in white high top sneakers standing on chair",
|
||||
title: "Modern Aesthetics", description: "Trendy designs that fit every occasion from office to gym.", bentoComponent: "reveal-icon", icon: Zap,
|
||||
},
|
||||
]}
|
||||
title="Why StepUp"
|
||||
@@ -180,14 +120,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"Nike",
|
||||
"Adidas",
|
||||
"Puma",
|
||||
"Reebok",
|
||||
"New Balance",
|
||||
"Asics",
|
||||
"Vans",
|
||||
]}
|
||||
"Nike", "Adidas", "Puma", "Reebok", "New Balance", "Asics", "Vans"]}
|
||||
title="Trusted by Thousands"
|
||||
description="Joining a global community that values quality and performance."
|
||||
/>
|
||||
@@ -200,26 +133,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "100k+",
|
||||
title: "Shoes Sold",
|
||||
description: "Global distribution fulfilled.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-wearing-futuristic-sneakers_23-2151005707.jpg",
|
||||
},
|
||||
id: "m1", value: "100k+", title: "Shoes Sold", description: "Global distribution fulfilled.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-wearing-futuristic-sneakers_23-2151005707.jpg"},
|
||||
{
|
||||
id: "m2",
|
||||
value: "4.8",
|
||||
title: "Rating",
|
||||
description: "Average across all stores.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/shoes_1203-8136.jpg",
|
||||
},
|
||||
id: "m2", value: "4.8", title: "Rating", description: "Average across all stores.", imageSrc: "http://img.b2bpic.net/free-photo/shoes_1203-8136.jpg"},
|
||||
{
|
||||
id: "m3",
|
||||
value: "50+",
|
||||
title: "Cities",
|
||||
description: "Physical retail presence.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers_23-2151005656.jpg",
|
||||
},
|
||||
id: "m3", value: "50+", title: "Cities", description: "Physical retail presence.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers_23-2151005656.jpg"},
|
||||
]}
|
||||
title="Our Impact"
|
||||
description="Driving change through better design and faster delivery."
|
||||
@@ -232,20 +150,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "Do you offer returns?",
|
||||
content: "Yes, we offer 30-day returns on all items.",
|
||||
},
|
||||
id: "f1", title: "Do you offer returns?", content: "Yes, we offer 30-day returns on all items."},
|
||||
{
|
||||
id: "f2",
|
||||
title: "How long is shipping?",
|
||||
content: "Standard shipping takes 3-5 business days.",
|
||||
},
|
||||
id: "f2", title: "How long is shipping?", content: "Standard shipping takes 3-5 business days."},
|
||||
{
|
||||
id: "f3",
|
||||
title: "Are these shoes water resistant?",
|
||||
content: "Our Pro models feature water-resistant coatings.",
|
||||
},
|
||||
id: "f3", title: "Are these shoes water resistant?", content: "Our Pro models feature water-resistant coatings."},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/chic-fashion-boutique-with-well-organized-clothing-racks_482257-118413.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
@@ -259,8 +168,7 @@ export default function LandingPage() {
|
||||
<ContactSplit
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
tag="Newsletter"
|
||||
title="Join our journey"
|
||||
description="Subscribe for early access to new releases and exclusive deals."
|
||||
@@ -274,37 +182,23 @@ export default function LandingPage() {
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Shop",
|
||||
items: [
|
||||
title: "Shop", items: [
|
||||
{
|
||||
label: "Running",
|
||||
href: "#products",
|
||||
},
|
||||
label: "Running", href: "#products"},
|
||||
{
|
||||
label: "Casual",
|
||||
href: "#products",
|
||||
},
|
||||
label: "Casual", href: "#products"},
|
||||
{
|
||||
label: "Sport",
|
||||
href: "#products",
|
||||
},
|
||||
label: "Sport", href: "#products"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
title: "Support", items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Contact", href: "#contact"},
|
||||
{
|
||||
label: "Shipping",
|
||||
href: "#faq",
|
||||
},
|
||||
label: "Shipping", href: "#faq"},
|
||||
{
|
||||
label: "Returns",
|
||||
href: "#faq",
|
||||
},
|
||||
label: "Returns", href: "#faq"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user