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() {
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" }
]
},