Update src/app/services/page.tsx

This commit is contained in:
2026-03-08 20:28:19 +00:00
parent 88c7390434
commit 8db90523b8

View File

@@ -13,7 +13,7 @@ export default function ServicesPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "#about" },
{ name: "About", id: "/about" },
{ name: "Testimonials", id: "#testimonials" },
{ name: "Contact", id: "#contact" },
];
@@ -37,9 +37,7 @@ export default function ServicesPage() {
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>
@@ -54,36 +52,24 @@ export default function ServicesPage() {
features={[
{
id: 1,
title: "Lawn Care",
description: "Weekly mowing, edge trimming, leaf removal, and seasonal lawn treatments. We keep your yard looking pristine year-round with reliable, professional service.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/view-robot-tending-maintaining-gardens_23-2151803931.jpg?_wi=2",
},
title: "Lawn Care", description: "Weekly mowing, edge trimming, leaf removal, and seasonal lawn treatments. We keep your yard looking pristine year-round with reliable, professional service.", phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/view-robot-tending-maintaining-gardens_23-2151803931.jpg?_wi=2"},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/man-plating-ground-small-tree_23-2148943236.jpg?_wi=2",
},
imageSrc: "http://img.b2bpic.net/free-photo/man-plating-ground-small-tree_23-2148943236.jpg?_wi=2"},
},
{
id: 2,
title: "Snow Removal",
description: "24/7 emergency snow plowing and removal for driveways and parking lots. Fast response times ensure safety and accessibility during winter storms.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/municipal-tractor-clears-snow-near-homes-snow-removal_169016-71221.jpg?_wi=2",
},
title: "Snow Removal", description: "24/7 emergency snow plowing and removal for driveways and parking lots. Fast response times ensure safety and accessibility during winter storms.", phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/municipal-tractor-clears-snow-near-homes-snow-removal_169016-71221.jpg?_wi=2"},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-park-river-shore-city-evening-time_181624-15945.jpg?_wi=2",
},
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-park-river-shore-city-evening-time_181624-15945.jpg?_wi=2"},
},
{
id: 3,
title: "Seasonal Cleanup",
description: "Spring and fall cleanup services including debris removal, gutter cleaning, and yard restoration. Prepare your property for every season.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/man-plating-ground-small-tree_23-2148943236.jpg?_wi=3",
},
title: "Seasonal Cleanup", description: "Spring and fall cleanup services including debris removal, gutter cleaning, and yard restoration. Prepare your property for every season.", phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/man-plating-ground-small-tree_23-2148943236.jpg?_wi=3"},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/view-robot-tending-maintaining-gardens_23-2151803931.jpg?_wi=3",
},
imageSrc: "http://img.b2bpic.net/free-photo/view-robot-tending-maintaining-gardens_23-2151803931.jpg?_wi=3"},
},
]}
showStepNumbers={true}
@@ -92,9 +78,7 @@ export default function ServicesPage() {
animationType="slide-up"
buttons={[
{
text: "Call to Book Service",
href: "tel:7345550147",
},
text: "Call to Book Service", href: "tel:7345550147"},
]}
buttonAnimation="slide-up"
/>
@@ -109,9 +93,7 @@ export default function ServicesPage() {
useInvertedBackground={false}
buttons={[
{
text: "Get a Free Quote",
href: "#contact",
},
text: "Get a Free Quote", href: "#contact"},
]}
/>
</div>
@@ -144,54 +126,33 @@ export default function ServicesPage() {
copyrightText="© 2025 TLT LawnCare & Snow Removal LLC | Serving Westland, MI"
columns={[
{
title: "Services",
items: [
title: "Services", items: [
{
label: "Lawn Care",
href: "/services",
},
label: "Lawn Care", href: "/services"},
{
label: "Snow Removal",
href: "/services",
},
label: "Snow Removal", href: "/services"},
{
label: "Seasonal Cleanup",
href: "/services",
},
label: "Seasonal Cleanup", href: "/services"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "#about",
},
label: "About Us", href: "/about"},
{
label: "Contact",
href: "#contact",
},
label: "Contact", href: "#contact"},
{
label: "Home",
href: "/",
},
label: "Home", href: "/"},
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{
label: "Call: (734) 555-0147",
href: "tel:7345550147",
},
label: "Call: (734) 555-0147", href: "tel:7345550147"},
{
label: "Westland, MI",
href: "#",
},
label: "Westland, MI", href: "#"},
{
label: "Email: info@tltlawncare.com",
href: "mailto:info@tltlawncare.com",
},
label: "Email: info@tltlawncare.com", href: "mailto:info@tltlawncare.com"},
],
},
]}