diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 6c036d7..907aab6 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -9,11 +9,11 @@ import { Phone } from "lucide-react"; export default function ContactPage() { const navItems = [ - { name: "Home", id: "hero" }, - { name: "Services", id: "services" }, - { name: "About", id: "about" }, - { name: "Testimonials", id: "testimonials" }, - { name: "Contact", id: "contact" }, + { name: "Home", id: "/" }, + { name: "Services", id: "/services" }, + { name: "About", id: "/about" }, + { name: "Testimonials", id: "#testimonials" }, + { name: "Contact", id: "#contact" }, ]; return ( @@ -34,9 +34,7 @@ export default function ContactPage() { brandName="TLT LawnCare" navItems={navItems} button={{ - text: "Call Now: (734) 555-0147", - href: "tel:7345550147", - }} + text: "Call Now: (734) 555-0147", href: "tel:7345550147"}} /> @@ -67,24 +65,21 @@ export default function ContactPage() { copyrightText="© 2025 TLT LawnCare & Snow Removal LLC | Serving Westland, MI" columns={[ { - title: "Services", - items: [ + title: "Services", items: [ { label: "Lawn Care", href: "/services" }, { label: "Snow Removal", href: "/services" }, { label: "Seasonal Cleanup", href: "/services" }, ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, - { label: "Contact", href: "/contact" }, + { label: "Contact", href: "#contact" }, { label: "Testimonials", href: "#testimonials" }, ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "Call: (734) 555-0147", href: "tel:7345550147" }, { label: "Westland, MI", href: "#" }, { label: "Email: info@tltlawncare.com", href: "mailto:info@tltlawncare.com" },