Merge version_1 into main #2
230
src/app/page.tsx
230
src/app/page.tsx
@@ -32,43 +32,24 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Products",
|
||||
id: "products",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Products", id: "products" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="cobraxnato"
|
||||
button={{ text: "Get Started", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboard
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
logoText="cobraxnato"
|
||||
description="Unleashing the apex of basketball performance and urban style. Join the pack."
|
||||
buttons={[
|
||||
{
|
||||
text: "Shop Gear",
|
||||
href: "#products",
|
||||
},
|
||||
{
|
||||
text: "Our Mission",
|
||||
href: "#about",
|
||||
},
|
||||
{ text: "Shop Gear", href: "#products" },
|
||||
{ text: "Our Mission", href: "#about" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/classic-portrait-silhouette-man_23-2149707013.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
@@ -91,60 +72,12 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
brand: "Cobrax",
|
||||
name: "Pro Game Ball",
|
||||
price: "$89",
|
||||
rating: 5,
|
||||
reviewCount: "120",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-basketball-player-training_23-2147604914.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
brand: "Cobrax",
|
||||
name: "Apex Sneakers",
|
||||
price: "$160",
|
||||
rating: 5,
|
||||
reviewCount: "95",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/red-sport-shoes-basketball-against-stack-brick-wall_23-2147924617.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
brand: "Cobrax",
|
||||
name: "Team Jersey",
|
||||
price: "$65",
|
||||
rating: 4,
|
||||
reviewCount: "80",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/midsection-view-teenage-boy-with-basketball_23-2147888355.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
brand: "Cobrax",
|
||||
name: "Hoop Kit",
|
||||
price: "$45",
|
||||
rating: 5,
|
||||
reviewCount: "55",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bottom-view-basket-game_23-2148773257.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
brand: "Cobrax",
|
||||
name: "Pro Duffle",
|
||||
price: "$120",
|
||||
rating: 4,
|
||||
reviewCount: "40",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-sporty-young-woman-doing-exercise-gym_1301-6636.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
brand: "Cobrax",
|
||||
name: "Wristbands",
|
||||
price: "$15",
|
||||
rating: 5,
|
||||
reviewCount: "200",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-fitness-woman-headband-clenching-fist-with-closed-eyes-with-annoyed-expression-standing-light-wall_141793-61429.jpg",
|
||||
},
|
||||
{ id: "p1", brand: "Cobrax", name: "Pro Game Ball", price: "$89", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/side-view-basketball-player-training_23-2147604914.jpg" },
|
||||
{ id: "p2", brand: "Cobrax", name: "Apex Sneakers", price: "$160", rating: 5, reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/red-sport-shoes-basketball-against-stack-brick-wall_23-2147924617.jpg" },
|
||||
{ id: "p3", brand: "Cobrax", name: "Team Jersey", price: "$65", rating: 4, reviewCount: "80", imageSrc: "http://img.b2bpic.net/free-photo/midsection-view-teenage-boy-with-basketball_23-2147888355.jpg" },
|
||||
{ id: "p4", brand: "Cobrax", name: "Hoop Kit", price: "$45", rating: 5, reviewCount: "55", imageSrc: "http://img.b2bpic.net/free-photo/bottom-view-basket-game_23-2148773257.jpg" },
|
||||
{ id: "p5", brand: "Cobrax", name: "Pro Duffle", price: "$120", rating: 4, reviewCount: "40", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-sporty-young-woman-doing-exercise-gym_1301-6636.jpg" },
|
||||
{ id: "p6", brand: "Cobrax", name: "Wristbands", price: "$15", rating: 5, reviewCount: "200", imageSrc: "http://img.b2bpic.net/free-photo/young-fitness-woman-headband-clenching-fist-with-closed-eyes-with-annoyed-expression-standing-light-wall_141793-61429.jpg" },
|
||||
]}
|
||||
title="Elite Equipment"
|
||||
description="Engineered for speed, durability, and total dominance."
|
||||
@@ -158,27 +91,9 @@ export default function LandingPage() {
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "10k+",
|
||||
title: "Players Equipped",
|
||||
description: "Global reach",
|
||||
icon: Users,
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "50+",
|
||||
title: "Elite Teams",
|
||||
description: "Partnerships",
|
||||
icon: Award,
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "100%",
|
||||
title: "Quality Assured",
|
||||
description: "Material testing",
|
||||
icon: CheckCircle,
|
||||
},
|
||||
{ id: "m1", value: "10k+", title: "Players Equipped", description: "Global reach", icon: Users },
|
||||
{ id: "m2", value: "50+", title: "Elite Teams", description: "Partnerships", icon: Award },
|
||||
{ id: "m3", value: "100%", title: "Quality Assured", description: "Material testing", icon: CheckCircle },
|
||||
]}
|
||||
title="Numbers That Speak"
|
||||
description="Proven performance, trusted by athletes across the globe."
|
||||
@@ -189,15 +104,7 @@ export default function LandingPage() {
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"League One",
|
||||
"Street Kings",
|
||||
"Pro Ballers",
|
||||
"Court Elite",
|
||||
"Alpha Sports",
|
||||
"Net Master",
|
||||
"Hoop Dreams",
|
||||
]}
|
||||
names={["League One", "Street Kings", "Pro Ballers", "Court Elite", "Alpha Sports", "Net Master", "Hoop Dreams"]}
|
||||
title="Trusted by Pros"
|
||||
description="Building the future of basketball infrastructure."
|
||||
/>
|
||||
@@ -210,46 +117,11 @@ export default function LandingPage() {
|
||||
gridVariant="asymmetric-60-wide-40-narrow"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah Johnson",
|
||||
role: "Pro Athlete",
|
||||
company: "Team One",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-athletic-man-black-background_613910-9870.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Michael Chen",
|
||||
role: "Youth Coach",
|
||||
company: "Hoop Lab",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-male-athlete-sport-clothes-with-bottle-water_179666-26410.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily Rodriguez",
|
||||
role: "Elite Player",
|
||||
company: "City Stars",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-young-bearded-man_273609-16029.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "David Kim",
|
||||
role: "Point Guard",
|
||||
company: "StreetKings",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-athlete-playing-basketball_23-2150845526.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Jessica Lee",
|
||||
role: "Pro Coach",
|
||||
company: "NetMaster",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-boy-with-basketball-ball_23-2148459552.jpg",
|
||||
},
|
||||
{ id: "1", name: "Sarah Johnson", role: "Pro Athlete", company: "Team One", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiling-athletic-man-black-background_613910-9870.jpg" },
|
||||
{ id: "2", name: "Michael Chen", role: "Youth Coach", company: "Hoop Lab", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/front-view-male-athlete-sport-clothes-with-bottle-water_179666-26410.jpg" },
|
||||
{ id: "3", name: "Emily Rodriguez", role: "Elite Player", company: "City Stars", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/closeup-young-bearded-man_273609-16029.jpg" },
|
||||
{ id: "4", name: "David Kim", role: "Point Guard", company: "StreetKings", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-athlete-playing-basketball_23-2150845526.jpg" },
|
||||
{ id: "5", name: "Jessica Lee", role: "Pro Coach", company: "NetMaster", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/front-view-boy-with-basketball-ball_23-2148459552.jpg" },
|
||||
]}
|
||||
title="Voice of the Court"
|
||||
description="What our athletes have to say about Cobraxnato gear."
|
||||
@@ -261,26 +133,14 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "q1",
|
||||
title: "Shipping times?",
|
||||
content: "Most orders arrive within 3-5 business days.",
|
||||
},
|
||||
{
|
||||
id: "q2",
|
||||
title: "Return policy?",
|
||||
content: "30-day hassle-free returns on all unused gear.",
|
||||
},
|
||||
{
|
||||
id: "q3",
|
||||
title: "Custom orders?",
|
||||
content: "Yes, we provide bulk team customization services.",
|
||||
},
|
||||
{ id: "q1", title: "Shipping times?", content: "Most orders arrive within 3-5 business days." },
|
||||
{ id: "q2", title: "Return policy?", content: "30-day hassle-free returns on all unused gear." },
|
||||
{ id: "q3", title: "Custom orders?", content: "Yes, we provide bulk team customization services." },
|
||||
]}
|
||||
title="Got Questions?"
|
||||
description="All your gear and company inquiries answered here."
|
||||
faqsAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-basketball-player-shoot_53876-30212.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-basketball-player-shoot_53876-30212.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
@@ -288,13 +148,11 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
tag="Newsletter"
|
||||
title="Join the Pack"
|
||||
description="Sign up for early access to drops and exclusive offers."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-basketball-player-shoot_53876-30212.jpg?_wi=2"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-basketball-player-shoot_53876-30212.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
@@ -302,32 +160,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Shop",
|
||||
items: [
|
||||
{
|
||||
label: "Balls",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Footwear",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "About",
|
||||
items: [
|
||||
{
|
||||
label: "Mission",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Shop", items: [{ label: "Balls", href: "#" }, { label: "Footwear", href: "#" }] },
|
||||
{ title: "About", items: [{ label: "Mission", href: "#" }, { label: "Contact", href: "#" }] },
|
||||
]}
|
||||
bottomLeftText="© 2024 Cobraxnato"
|
||||
bottomRightText="Built for Ballers"
|
||||
@@ -336,4 +170,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user