diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index cbb1e16..61fdbe4 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -9,10 +9,10 @@ import { Phone, HelpCircle } from 'lucide-react'; export default function ContactPage() { 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" }, ]; @@ -90,17 +90,17 @@ export default function ContactPage() { 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: "#" } @@ -108,7 +108,7 @@ export default function ContactPage() { }, { title: "Support", items: [ - { label: "Contact Us", href: "contact" }, + { label: "Contact Us", href: "/contact" }, { label: "Shipping Info", href: "#" }, { label: "Returns", href: "#" }, { label: "Care Guide", href: "#" },