From 072333cc90a6353859733ef4124df233b6f964b1 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 11 Jun 2026 04:29:30 +0000 Subject: [PATCH] Update src/app/contact-us/page.tsx --- src/app/contact-us/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/contact-us/page.tsx b/src/app/contact-us/page.tsx index 6bbd529..6497c74 100644 --- a/src/app/contact-us/page.tsx +++ b/src/app/contact-us/page.tsx @@ -10,9 +10,9 @@ import { MessageCircle } from "lucide-react"; export default function ContactUsPage() { const commonNavItems = [ { name: "Home", id: "/" }, - { name: "Services", id: "/#services" }, - { name: "About", id: "/#about" }, - { name: "Reviews", id: "/#reviews" }, + { name: "Services", id: "/services" }, + { name: "About", id: "/about" }, + { name: "Reviews", id: "#reviews" }, { name: "Contact", id: "/contact-us" } ]; @@ -20,9 +20,9 @@ export default function ContactUsPage() { { items: [ { label: "Home", href: "/" }, - { label: "Services", href: "/#services" }, - { label: "About", href: "/#about" }, - { label: "Reviews", href: "/#reviews" }, + { label: "Services", href: "/services" }, + { label: "About", href: "/about" }, + { label: "Reviews", href: "#reviews" }, { label: "Contact", href: "/contact-us" } ] },