From 37b2ede17dcdb4cd90e057ca7304d4010e997181 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 11:00:14 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c720ac4..16e6a93 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,13 +11,14 @@ import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import ContactFaq from '@/components/sections/contact/ContactFaq'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import { Sparkles, ArrowRight, Star, Heart, HelpCircle, Mail } from 'lucide-react'; +import Link from 'next/link'; export default function HomePage() { const navItems = [ - { name: "Shop", id: "shop" }, - { name: "Collections", id: "collections" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, + { name: "Shop", id: "/shop" }, + { name: "Collections", id: "/collections" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, { name: "Cart", id: "https://example.com/cart" }, ]; @@ -80,6 +81,7 @@ export default function HomePage() { ]} textboxLayout="default" useInvertedBackground={false} + animationType="slide-up" /> @@ -130,8 +132,8 @@ export default function HomePage() { ]} useInvertedBackground={true} buttons={[ - { text: "Learn Our Story", href: "about" }, - { text: "Contact Us", href: "contact" } + { text: "Learn Our Story", href: "/about" }, + { text: "Contact Us", href: "/contact" } ]} buttonAnimation="slide-up" /> @@ -232,17 +234,17 @@ export default function HomePage() { columns={[ { title: "Shop", items: [ - { label: "All Furniture", href: "shop" }, - { label: "Seating", href: "shop" }, - { label: "Tables", href: "shop" }, - { label: "Storage", href: "shop" }, - { label: "New Arrivals", href: "shop" } + { label: "All Furniture", href: "/shop" }, + { label: "Seating", href: "/shop" }, + { label: "Tables", href: "/shop" }, + { label: "Storage", href: "/shop" }, + { label: "New Arrivals", href: "/shop" } ] }, { title: "Company", items: [ - { label: "About Us", href: "about" }, - { label: "Design Philosophy", href: "about" }, + { label: "About Us", href: "/about" }, + { label: "Design Philosophy", href: "/about" }, { label: "Sustainability", href: "#" }, { label: "Careers", href: "#" }, { label: "Press", href: "#" } @@ -250,7 +252,7 @@ export default function HomePage() { }, { title: "Support", items: [ - { label: "Contact Us", href: "contact" }, + { label: "Contact Us", href: "/contact" }, { label: "Shipping Info", href: "#" }, { label: "Returns", href: "#" }, { label: "Care Guide", href: "#" },