diff --git a/src/app/faq/page.tsx b/src/app/faq/page.tsx index 1858abe..fc69ca4 100644 --- a/src/app/faq/page.tsx +++ b/src/app/faq/page.tsx @@ -8,13 +8,17 @@ import { HelpCircle } from "lucide-react"; export default function FaqPage() { const navItems = [ - { name: "Home", id: "home" }, + { name: "Home", id: "/" }, { name: "Shop", id: "shop" }, { name: "Brands", id: "brands" }, { name: "New Arrivals", id: "new-arrivals" }, { name: "Best Sellers", id: "best-sellers" }, { name: "About", id: "about" }, { name: "Contact", id: "contact" }, + { name: "FAQ", id: "/faq" }, + { name: "Shipping & Returns", id: "/shipping-and-returns" }, + { name: "Privacy Policy", id: "/privacy-policy" }, + { name: "Terms & Conditions", id: "/terms-and-conditions" }, ]; const footerColumns = [ @@ -36,7 +40,7 @@ export default function FaqPage() { }, { title: "Support", items: [ - { label: "Shipping & Returns", href: "/shipping-returns" }, + { label: "Shipping & Returns", href: "/shipping-and-returns" }, { label: "FAQ", href: "/faq" }, { label: "Size Guide", href: "#" }, { label: "Track Order", href: "#" }, @@ -45,7 +49,7 @@ export default function FaqPage() { { title: "Legal", items: [ { label: "Privacy Policy", href: "/privacy-policy" }, - { label: "Terms & Conditions", href: "/terms-conditions" }, + { label: "Terms & Conditions", href: "/terms-and-conditions" }, { label: "Cookie Policy", href: "#" }, { label: "Accessibility", href: "#" }, ], @@ -82,7 +86,7 @@ export default function FaqPage() {