Update src/app/contact-us/page.tsx

This commit is contained in:
2026-06-11 04:29:30 +00:00
parent 5030a10ca5
commit 072333cc90

View File

@@ -10,9 +10,9 @@ import { MessageCircle } from "lucide-react";
export default function ContactUsPage() { export default function ContactUsPage() {
const commonNavItems = [ const commonNavItems = [
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Services", id: "/#services" }, { name: "Services", id: "/services" },
{ name: "About", id: "/#about" }, { name: "About", id: "/about" },
{ name: "Reviews", id: "/#reviews" }, { name: "Reviews", id: "#reviews" },
{ name: "Contact", id: "/contact-us" } { name: "Contact", id: "/contact-us" }
]; ];
@@ -20,9 +20,9 @@ export default function ContactUsPage() {
{ {
items: [ items: [
{ label: "Home", href: "/" }, { label: "Home", href: "/" },
{ label: "Services", href: "/#services" }, { label: "Services", href: "/services" },
{ label: "About", href: "/#about" }, { label: "About", href: "/about" },
{ label: "Reviews", href: "/#reviews" }, { label: "Reviews", href: "#reviews" },
{ label: "Contact", href: "/contact-us" } { label: "Contact", href: "/contact-us" }
] ]
}, },