From 8a69c472818e4a929d2bed254c5c50ff6de4d9f6 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 13:38:32 +0000 Subject: [PATCH] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 2434a59..771cd9e 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -8,17 +8,16 @@ import Link from "next/link"; export default function ContactPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "Reviews", id: "reviews" }, - { name: "Guides", id: "guides" }, - { name: "Blog", id: "blog" }, - { name: "Contact", id: "contact" }, + { name: "Home", id: "/" }, + { name: "Reviews", id: "/reviews" }, + { name: "Guides", id: "/guides" }, + { name: "Blog", id: "/blog" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ { - title: "Discover", - items: [ + title: "Discover", items: [ { label: "Product Reviews", href: "/reviews" }, { label: "Beauty Guides", href: "/guides" }, { label: "Blog Articles", href: "/blog" }, @@ -26,8 +25,7 @@ export default function ContactPage() { ], }, { - title: "Categories", - items: [ + title: "Categories", items: [ { label: "Skincare", href: "#" }, { label: "Makeup", href: "#" }, { label: "Lip Care", href: "#" }, @@ -35,8 +33,7 @@ export default function ContactPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "#" }, { label: "Contact", href: "/contact" }, { label: "Advertise", href: "#" }, @@ -44,8 +41,7 @@ export default function ContactPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Disclosure", href: "#" }, @@ -70,7 +66,7 @@ export default function ContactPage() {