Update src/app/contact/page.tsx

This commit is contained in:
2026-03-08 20:28:18 +00:00
parent 4e80f2ab34
commit 08713175ca

View File

@@ -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"}}
/>
</div>
@@ -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" },