Update src/app/page.tsx

This commit is contained in:
2026-03-03 19:00:24 +00:00
parent c6d09f0a0c
commit 04ab4da65c

View File

@@ -7,6 +7,7 @@ import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import ContactFaq from "@/components/sections/contact/ContactFaq";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
import MediaAbout from "@/components/sections/about/MediaAbout";
import Link from "next/link";
import { MessageCircle, Zap, Heart } from "lucide-react";
@@ -100,35 +101,14 @@ export default function HomePage() {
gridVariant="three-columns-all-equal-width"
products={[
{
id: "1",
brand: "STREETWEAR CO.",
name: "Baggy Jeans",
price: "R599",
rating: 5,
reviewCount: "142",
imageSrc: "http://img.b2bpic.net/free-photo/vertical-photo-young-lady-leaning-wall-tunnel_114579-92564.jpg?_wi=1",
imageAlt: "Oversized baggy jeans with artistic prints",
},
id: "1", brand: "STREETWEAR CO.", name: "Baggy Jeans", price: "R599", rating: 5,
reviewCount: "142", imageSrc: "http://img.b2bpic.net/free-photo/vertical-photo-young-lady-leaning-wall-tunnel_114579-92564.jpg", imageAlt: "Oversized baggy jeans with artistic prints"},
{
id: "2",
brand: "STREETWEAR CO.",
name: "Long Sleeve Shirt",
price: "R399",
rating: 5,
reviewCount: "98",
imageSrc: "http://img.b2bpic.net/free-vector/simple-symmetrical-design-black-background_1040-1214.jpg",
imageAlt: "Premium long sleeve shirt with detailed graphics",
},
id: "2", brand: "STREETWEAR CO.", name: "Long Sleeve Shirt", price: "R399", rating: 5,
reviewCount: "98", imageSrc: "http://img.b2bpic.net/free-vector/simple-symmetrical-design-black-background_1040-1214.jpg", imageAlt: "Premium long sleeve shirt with detailed graphics"},
{
id: "3",
brand: "STREETWEAR CO.",
name: "T-Shirt Premium",
price: "R299",
rating: 5,
reviewCount: "176",
imageSrc: "http://img.b2bpic.net/free-vector/pride-day-lettering_23-2148514310.jpg?_wi=1",
imageAlt: "Artistic print t-shirt classic cut",
},
id: "3", brand: "STREETWEAR CO.", name: "T-Shirt Premium", price: "R299", rating: 5,
reviewCount: "176", imageSrc: "http://img.b2bpic.net/free-vector/pride-day-lettering_23-2148514310.jpg", imageAlt: "Artistic print t-shirt classic cut"},
]}
/>
</div>
@@ -141,70 +121,40 @@ export default function HomePage() {
textboxLayout="default"
useInvertedBackground={false}
names={[
"Urban Fashion Week",
"Street Culture Magazine",
"Fashion Forward Collective",
"Independent Style Collective",
"Art & Fashion Union",
"Creative Movement",
"Urban Collective",
"Style Rebels",
]}
"Urban Fashion Week", "Street Culture Magazine", "Fashion Forward Collective", "Independent Style Collective", "Art & Fashion Union", "Creative Movement", "Urban Collective", "Style Rebels"]}
speed={50}
showCard={true}
/>
</div>
<div id="about" data-section="about" className="py-24 bg-foreground/5">
<div className="mx-auto px-4 md:px-6 max-w-7xl">
<div className="mb-8 flex items-center gap-2">
<Heart className="w-5 h-5 text-primary-cta" />
<span className="text-sm font-medium text-primary-cta">About Us</span>
</div>
<h2 className="text-5xl md:text-6xl font-extrabold mb-6 max-w-2xl">Our Story</h2>
<p className="text-lg text-foreground/70 mb-8 max-w-2xl">
Born from the streets, crafted with intention. We create bold, artistic streetwear for those who refuse to blend in. Every piece tells a story of rebellion, creativity, and urban culture.
</p>
<div className="aspect-video rounded-theme-capped overflow-hidden mb-8">
<img
src="http://img.b2bpic.net/free-photo/vertical-photo-young-lady-leaning-wall-tunnel_114579-92564.jpg"
alt="Streetwear collection artistic presentation"
className="w-full h-full object-cover"
/>
</div>
<Link href="/shop" className="inline-block px-6 py-3 bg-primary-cta text-primary-cta-text rounded-theme-capped font-semibold hover:opacity-90 transition-opacity">
Learn More
</Link>
</div>
<div id="about" data-section="about">
<MediaAbout
title="Our Story"
description="Born from the streets, crafted with intention. We create bold, artistic streetwear for those who refuse to blend in. Every piece tells a story of rebellion, creativity, and urban culture."
tag="About Us"
tagIcon={Heart}
buttons={[{ text: "Learn More", href: "/shop" }]}
imageSrc="http://img.b2bpic.net/free-photo/vertical-photo-young-lady-leaning-wall-tunnel_114579-92564.jpg"
imageAlt="Streetwear collection artistic presentation"
useInvertedBackground={true}
/>
</div>
<div id="contact" data-section="contact">
<ContactFaq
faqs={[
{
id: "1",
title: "What sizes do you offer?",
content:
"We offer sizes XS through XXL with detailed size guides available for each product. Check the product page for specific measurements and fit recommendations.",
},
id: "1", title: "What sizes do you offer?", content:
"We offer sizes XS through XXL with detailed size guides available for each product. Check the product page for specific measurements and fit recommendations."},
{
id: "2",
title: "How long does shipping take?",
content:
"Standard shipping within South Africa takes 3-5 business days. Express delivery is available for urgent orders. International shipping available to select countries.",
},
id: "2", title: "How long does shipping take?", content:
"Standard shipping within South Africa takes 3-5 business days. Express delivery is available for urgent orders. International shipping available to select countries."},
{
id: "3",
title: "What payment methods do you accept?",
content:
"We accept all major credit cards, PayPal, and EFT transfers. Secure checkout with 256-bit encryption for all transactions.",
},
id: "3", title: "What payment methods do you accept?", content:
"We accept all major credit cards, PayPal, and EFT transfers. Secure checkout with 256-bit encryption for all transactions."},
{
id: "4",
title: "Do you offer returns?",
content:
"30-day returns on all unworn items with original tags. Free return shipping on defective products. Easy return process through your account dashboard.",
},
id: "4", title: "Do you offer returns?", content:
"30-day returns on all unworn items with original tags. Free return shipping on defective products. Easy return process through your account dashboard."},
]}
ctaTitle="Get In Touch"
ctaDescription="Have questions about our collection? Reach out to our team."