From dc7b80da24381c42c51add93c6c3c175c126b089 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 11:58:10 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 296 +++++++---------------------------------------- 1 file changed, 40 insertions(+), 256 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index fffe8f8..47ca2f0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -31,75 +31,34 @@ export default function LandingPage() {
@@ -109,21 +68,9 @@ export default function LandingPage() { useInvertedBackground={false} title="Engineered for Greatness" metrics={[ - { - icon: Zap, - label: "Energy Return", - value: "98%", - }, - { - icon: Shield, - label: "Structural Support", - value: "Pro", - }, - { - icon: Award, - label: "LeBron Verified", - value: "Elite", - }, + { icon: Zap, label: "Energy Return", value: "98%" }, + { icon: Shield, label: "Structural Support", value: "Pro" }, + { icon: Award, label: "LeBron Verified", value: "Elite" } ]} metricsAnimation="slide-up" /> @@ -131,64 +78,17 @@ export default function LandingPage() {
@@ -219,41 +111,11 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} testimonials={[ - { - id: "t1", - name: "Marcus Jordan", - role: "Pro Athlete", - testimonial: "The balance of support and minimalism is unmatched.", - imageSrc: "http://img.b2bpic.net/free-photo/woman-sitting-playground-with-phone-her-hands_140725-16381.jpg", - }, - { - id: "t2", - name: "Elena Ross", - role: "Streetwear Fan", - testimonial: "Finally, a performance shoe that looks this clean.", - imageSrc: "http://img.b2bpic.net/free-photo/woman-doing-yoga-park-bench_23-2147791906.jpg", - }, - { - id: "t3", - name: "David Wells", - role: "NBA Critic", - testimonial: "LeBron wouldn't put his name on anything less than perfect.", - imageSrc: "http://img.b2bpic.net/free-photo/hotel-receptionist-work_23-2149661589.jpg", - }, - { - id: "t4", - name: "Sarah Chen", - role: "Designer", - testimonial: "The attention to detail in the silhouette is incredible.", - imageSrc: "http://img.b2bpic.net/free-photo/young-designer-looking-some-prints-choose-best-one-agency-employee_482257-32975.jpg", - }, - { - id: "t5", - name: "Mike Davis", - role: "Coach", - testimonial: "Every step feels lighter, yet more controlled than ever.", - imageSrc: "http://img.b2bpic.net/free-photo/young-smiling-athletic-woman-warming-up-while-exercising-living-room_637285-6208.jpg", - }, + { id: "t1", name: "Marcus Jordan", role: "Pro Athlete", testimonial: "The balance of support and minimalism is unmatched.", imageSrc: "http://img.b2bpic.net/free-photo/woman-sitting-playground-with-phone-her-hands_140725-16381.jpg" }, + { id: "t2", name: "Elena Ross", role: "Streetwear Fan", testimonial: "Finally, a performance shoe that looks this clean.", imageSrc: "http://img.b2bpic.net/free-photo/woman-doing-yoga-park-bench_23-2147791906.jpg" }, + { id: "t3", name: "David Wells", role: "NBA Critic", testimonial: "LeBron wouldn't put his name on anything less than perfect.", imageSrc: "http://img.b2bpic.net/free-photo/hotel-receptionist-work_23-2149661589.jpg" }, + { id: "t4", name: "Sarah Chen", role: "Designer", testimonial: "The attention to detail in the silhouette is incredible.", imageSrc: "http://img.b2bpic.net/free-photo/young-designer-looking-some-prints-choose-best-one-agency-employee_482257-32975.jpg" }, + { id: "t5", name: "Mike Davis", role: "Coach", testimonial: "Every step feels lighter, yet more controlled than ever.", imageSrc: "http://img.b2bpic.net/free-photo/young-smiling-athletic-woman-warming-up-while-exercising-living-room_637285-6208.jpg" } ]} title="Voices of the Elite" description="Hear what the community says about Niche Superior." @@ -265,26 +127,10 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} faqs={[ - { - id: "f1", - title: "Are these shoes performance-ready?", - content: "Yes, Niche Superior is designed for both high-intensity performance on the court and street-ready style.", - }, - { - id: "f2", - title: "What makes the LeBron collab unique?", - content: "It features proprietary support technology verified by LeBron himself, ensuring elite performance.", - }, - { - id: "f3", - title: "Do you offer international shipping?", - content: "Yes, we ship our premium footwear to over 50 countries worldwide.", - }, - { - id: "f4", - title: "How do I choose my size?", - content: "Our shoes are true to size. We recommend measuring your foot length and matching it to our size chart.", - }, + { id: "f1", title: "Are these shoes performance-ready?", content: "Yes, Niche Superior is designed for both high-intensity performance on the court and street-ready style." }, + { id: "f2", title: "What makes the LeBron collab unique?", content: "It features proprietary support technology verified by LeBron himself, ensuring elite performance." }, + { id: "f3", title: "Do you offer international shipping?", content: "Yes, we ship our premium footwear to over 50 countries worldwide." }, + { id: "f4", title: "How do I choose my size?", content: "Our shoes are true to size. We recommend measuring your foot length and matching it to our size chart." } ]} title="Frequently Asked Questions" description="Have questions about Niche Superior? We have the answers." @@ -298,24 +144,10 @@ export default function LandingPage() { title="Join the Elite" description="Sign up to receive early access to our future signature drops." inputs={[ - { - name: "name", - type: "text", - placeholder: "Your Name", - required: true, - }, - { - name: "email", - type: "email", - placeholder: "Your Email", - required: true, - }, + { name: "name", type: "text", placeholder: "Your Name", required: true }, + { name: "email", type: "email", placeholder: "Your Email", required: true } ]} - textarea={{ - name: "message", - placeholder: "Any specific questions?", - rows: 4, - }} + textarea={{ name: "message", placeholder: "Any specific questions?", rows: 4 }} imageSrc="http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers-presentation_23-2151005714.jpg" />
@@ -323,57 +155,9 @@ export default function LandingPage() {