diff --git a/src/app/page.tsx b/src/app/page.tsx index 4361935..66b783b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,5 +1,6 @@ "use client"; +import Link from "next/link"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import HeroLogo from '@/components/sections/hero/HeroLogo'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; @@ -50,7 +51,6 @@ export default function HomePage() { imageAlt="Street fashion and urban style" showDimOverlay={true} logoLineHeight={1.1} - useInvertedBackground="noInvert" /> @@ -62,46 +62,22 @@ export default function HomePage() { tagIcon={Package} products={[ { - id: "1", - name: "Oversized Graphic Tee", - price: "$89", - variant: "Black, White, Olive", - imageSrc: "https://img.b2bpic.net/free-photo/upset-european-man-white-shirt-with-tattooed-arms-sitting-outdoors_181624-59916.jpg", - imageAlt: "Premium graphic t-shirt", - isFavorited: false + id: "1", name: "Oversized Graphic Tee", price: "$89", variant: "Black, White, Olive", imageSrc: "https://img.b2bpic.net/free-photo/upset-european-man-white-shirt-with-tattooed-arms-sitting-outdoors_181624-59916.jpg", imageAlt: "Premium graphic t-shirt", isFavorited: false }, { - id: "2", - name: "Essential Hoodie", - price: "$149", - variant: "Black, Navy, Charcoal", - imageSrc: "https://img.b2bpic.net/free-photo/sport-jersey-success-event-motion_1296-353.jpg", - imageAlt: "Premium streetwear hoodie", - isFavorited: false + id: "2", name: "Essential Hoodie", price: "$149", variant: "Black, Navy, Charcoal", imageSrc: "https://img.b2bpic.net/free-photo/sport-jersey-success-event-motion_1296-353.jpg", imageAlt: "Premium streetwear hoodie", isFavorited: false }, { - id: "3", - name: "Cargo Utility Pants", - price: "$129", - variant: "Black, Khaki, Olive", - imageSrc: "https://img.b2bpic.net/free-photo/shallow-focus-shot-posing-handsome-smiling-european-guy-hat_181624-61284.jpg", - imageAlt: "Premium cargo pants", - isFavorited: false + id: "3", name: "Cargo Utility Pants", price: "$129", variant: "Black, Khaki, Olive", imageSrc: "https://img.b2bpic.net/free-photo/shallow-focus-shot-posing-handsome-smiling-european-guy-hat_181624-61284.jpg", imageAlt: "Premium cargo pants", isFavorited: false }, { - id: "4", - name: "Bomber Jacket", - price: "$199", - variant: "Black, Brown, Navy", - imageSrc: "https://img.b2bpic.net/free-photo/young-man-standing-gray-concrete-wall-looking-his-smartphone-s-screen-listening-music-his-white-earplugs_346278-1740.jpg", - imageAlt: "Premium bomber jacket", - isFavorited: false + id: "4", name: "Bomber Jacket", price: "$199", variant: "Black, Brown, Navy", imageSrc: "https://img.b2bpic.net/free-photo/young-man-standing-gray-concrete-wall-looking-his-smartphone-s-screen-listening-music-his-white-earplugs_346278-1740.jpg", imageAlt: "Premium bomber jacket", isFavorited: false } ]} gridVariant="uniform-all-items-equal" animationType="slide-up" textboxLayout="default" - useInvertedBackground="invertDefault" + useInvertedBackground="noInvert" carouselMode="buttons" /> @@ -110,8 +86,7 @@ export default function HomePage() { @@ -175,8 +132,7 @@ export default function HomePage() { logoText="DISTRICT" columns={[ { - title: "Shop", - items: [ + title: "Shop", items: [ { label: "New Arrivals", href: "/shop/new" }, { label: "Collections", href: "/collections" }, { label: "Sale", href: "/sale" }, @@ -184,8 +140,7 @@ export default function HomePage() { ] }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Careers", href: "/careers" }, { label: "Press", href: "/press" }, @@ -193,8 +148,7 @@ export default function HomePage() { ] }, { - title: "Support", - items: [ + title: "Support", items: [ { label: "Contact Us", href: "/contact" }, { label: "Shipping Info", href: "/shipping" }, { label: "Returns", href: "/returns" }, @@ -202,8 +156,7 @@ export default function HomePage() { ] }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "/privacy" }, { label: "Terms of Service", href: "/terms" }, { label: "Cookie Policy", href: "/cookies" },