From 4e80f2ab34889757ca0a6b5970143ff2499adb98 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 20:28:18 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 69 +++++++++++++----------------------------- 1 file changed, 21 insertions(+), 48 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index d241835..24c3aa4 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -10,11 +10,11 @@ import { Leaf, Wrench, Phone } from "lucide-react"; export default function AboutPage() { 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 ( @@ -35,9 +35,7 @@ export default function AboutPage() { brandName="TLT LawnCare" navItems={navItems} button={{ - text: "Call Now: (734) 555-0147", - href: "tel:7345550147", - }} + text: "Call Now: (734) 555-0147", href: "tel:7345550147"}} /> @@ -50,9 +48,7 @@ export default function AboutPage() { useInvertedBackground={false} buttons={[ { - text: "Learn More About Our Services", - href: "/services", - }, + text: "Learn More About Our Services", href: "/services"}, ]} /> @@ -67,42 +63,24 @@ export default function AboutPage() { 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=4", - imageAlt: "Professional lawn care service", - }, + 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=4", imageAlt: "Professional lawn care service"}, phoneTwo: { - imageSrc: "http://img.b2bpic.net/free-photo/man-plating-ground-small-tree_23-2148943236.jpg?_wi=4", - imageAlt: "Seasonal cleanup service", - }, + imageSrc: "http://img.b2bpic.net/free-photo/man-plating-ground-small-tree_23-2148943236.jpg?_wi=4", imageAlt: "Seasonal cleanup service"}, }, { 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=3", - imageAlt: "Professional snow removal service", - }, + 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=3", imageAlt: "Professional snow removal service"}, phoneTwo: { - imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-park-river-shore-city-evening-time_181624-15945.jpg?_wi=4", - imageAlt: "Westland Michigan neighborhood", - }, + imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-park-river-shore-city-evening-time_181624-15945.jpg?_wi=4", imageAlt: "Westland Michigan neighborhood"}, }, { 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=5", - imageAlt: "Fall seasonal cleanup landscape", - }, + 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=5", imageAlt: "Fall seasonal cleanup landscape"}, phoneTwo: { - imageSrc: "http://img.b2bpic.net/free-photo/view-robot-tending-maintaining-gardens_23-2151803931.jpg?_wi=5", - imageAlt: "Professional lawn care service", - }, + imageSrc: "http://img.b2bpic.net/free-photo/view-robot-tending-maintaining-gardens_23-2151803931.jpg?_wi=5", imageAlt: "Professional lawn care service"}, }, ]} showStepNumbers={true} @@ -111,9 +89,7 @@ export default function AboutPage() { animationType="slide-up" buttons={[ { - text: "Call to Book Service", - href: "tel:7345550147", - }, + text: "Call to Book Service", href: "tel:7345550147"}, ]} buttonAnimation="slide-up" /> @@ -127,24 +103,21 @@ export default function AboutPage() { 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" }, From 08713175cabdcdd788e1d22edd0e8b49a689b63d Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 20:28:18 +0000 Subject: [PATCH 2/4] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 25 ++++++++++--------------- 1 file changed, 10 insertions(+), 15 deletions(-) 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" }, From 88c7390434d92299eaf94287a0e70b98defd1465 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 20:28:19 +0000 Subject: [PATCH 3/4] Update src/app/page.tsx --- src/app/page.tsx | 123 ++++++++++------------------------------------- 1 file changed, 26 insertions(+), 97 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7b0aa1a..74a1aed 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -14,7 +14,7 @@ export default function HomePage() { 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" }, ]; @@ -38,9 +38,7 @@ export default function HomePage() { brandName="TLT LawnCare" navItems={navItems} button={{ - text: "Call Now: (734) 555-0147", - href: "tel:7345550147", - }} + text: "Call Now: (734) 555-0147", href: "tel:7345550147"}} /> @@ -55,28 +53,18 @@ export default function HomePage() { background={{ variant: "radial-gradient" }} mediaItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/view-robot-tending-maintaining-gardens_23-2151803931.jpg?_wi=1", - imageAlt: "Professional lawn care service in action", - }, + imageSrc: "http://img.b2bpic.net/free-photo/view-robot-tending-maintaining-gardens_23-2151803931.jpg?_wi=1", imageAlt: "Professional lawn care service in action"}, { - imageSrc: "http://img.b2bpic.net/free-photo/municipal-tractor-clears-snow-near-homes-snow-removal_169016-71221.jpg?_wi=1", - imageAlt: "Professional snow removal service", - }, + imageSrc: "http://img.b2bpic.net/free-photo/municipal-tractor-clears-snow-near-homes-snow-removal_169016-71221.jpg?_wi=1", imageAlt: "Professional snow removal service"}, { - imageSrc: "http://img.b2bpic.net/free-photo/man-plating-ground-small-tree_23-2148943236.jpg?_wi=1", - imageAlt: "Seasonal cleanup and maintenance", - }, + imageSrc: "http://img.b2bpic.net/free-photo/man-plating-ground-small-tree_23-2148943236.jpg?_wi=1", imageAlt: "Seasonal cleanup and maintenance"}, ]} mediaAnimation="slide-up" buttons={[ { - text: "Call Now: (734) 555-0147", - href: "tel:7345550147", - }, + text: "Call Now: (734) 555-0147", href: "tel:7345550147"}, { - text: "Request Free Quote", - href: "#contact", - }, + text: "Request Free Quote", href: "#contact"}, ]} buttonAnimation="slide-up" /> @@ -91,9 +79,7 @@ export default function HomePage() { useInvertedBackground={false} buttons={[ { - text: "Learn More About Our Services", - href: "/services", - }, + text: "Learn More About Our Services", href: "/services"}, ]} /> @@ -111,53 +97,17 @@ export default function HomePage() { animationType="slide-up" testimonials={[ { - id: "1", - name: "Hope Roe", - handle: "Westland, MI", - testimonial: "TLT has been our go-to for lawn care for 3 years. Professional, reliable, and always on time. They treat our property like their own. Highly recommend!", - imageSrc: "http://img.b2bpic.net/free-photo/man-shirt-smiling-posing-kitchen_23-2148414940.jpg?_wi=1", - imageAlt: "Hope Roe", - }, + id: "1", name: "Hope Roe", handle: "Westland, MI", testimonial: "TLT has been our go-to for lawn care for 3 years. Professional, reliable, and always on time. They treat our property like their own. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/man-shirt-smiling-posing-kitchen_23-2148414940.jpg?_wi=1", imageAlt: "Hope Roe"}, { - id: "2", - name: "Katrina Zacharczuk McKenna", - handle: "Dearborn Heights, MI", - testimonial: "Best decision was calling TLT for snow removal last winter. Fast response, thorough work, and fair pricing. Will use them again next season!", - imageSrc: "http://img.b2bpic.net/free-photo/businesswoman_23-2148006200.jpg?_wi=1", - imageAlt: "Katrina Zacharczuk McKenna", - }, + id: "2", name: "Katrina Zacharczuk McKenna", handle: "Dearborn Heights, MI", testimonial: "Best decision was calling TLT for snow removal last winter. Fast response, thorough work, and fair pricing. Will use them again next season!", imageSrc: "http://img.b2bpic.net/free-photo/businesswoman_23-2148006200.jpg?_wi=1", imageAlt: "Katrina Zacharczuk McKenna"}, { - id: "3", - name: "Mike Lee", - handle: "Westland, MI", - testimonial: "Professional crew that shows up on schedule. Our lawn has never looked better. Customer service is top-notch. Five stars all the way!", - imageSrc: "http://img.b2bpic.net/free-photo/woman-with-thumbs-up_1149-1163.jpg", - imageAlt: "Mike Lee", - }, + id: "3", name: "Mike Lee", handle: "Westland, MI", testimonial: "Professional crew that shows up on schedule. Our lawn has never looked better. Customer service is top-notch. Five stars all the way!", imageSrc: "http://img.b2bpic.net/free-photo/woman-with-thumbs-up_1149-1163.jpg", imageAlt: "Mike Lee"}, { - id: "4", - name: "Sarah Johnson", - handle: "Inkster, MI", - testimonial: "Called for emergency snow removal during the big storm last month. They were there within hours! Dependable, affordable, and professional.", - imageSrc: "http://img.b2bpic.net/free-photo/happy-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-leaning-desk-posing_74855-9949.jpg", - imageAlt: "Sarah Johnson", - }, + id: "4", name: "Sarah Johnson", handle: "Inkster, MI", testimonial: "Called for emergency snow removal during the big storm last month. They were there within hours! Dependable, affordable, and professional.", imageSrc: "http://img.b2bpic.net/free-photo/happy-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-leaning-desk-posing_74855-9949.jpg", imageAlt: "Sarah Johnson"}, { - id: "5", - name: "David Chen", - handle: "Garden City, MI", - testimonial: "Switched to TLT three years ago and never looked back. Their attention to detail and reliability is unmatched in the area.", - imageSrc: "http://img.b2bpic.net/free-photo/man-shirt-smiling-posing-kitchen_23-2148414940.jpg?_wi=2", - imageAlt: "David Chen", - }, + id: "5", name: "David Chen", handle: "Garden City, MI", testimonial: "Switched to TLT three years ago and never looked back. Their attention to detail and reliability is unmatched in the area.", imageSrc: "http://img.b2bpic.net/free-photo/man-shirt-smiling-posing-kitchen_23-2148414940.jpg?_wi=2", imageAlt: "David Chen"}, { - id: "6", - name: "Jennifer Martinez", - handle: "Westland, MI", - testimonial: "Outstanding service from start to finish. They handle everything with professionalism. My property has never looked better. Highly trusted!", - imageSrc: "http://img.b2bpic.net/free-photo/businesswoman_23-2148006200.jpg?_wi=2", - imageAlt: "Jennifer Martinez", - }, + id: "6", name: "Jennifer Martinez", handle: "Westland, MI", testimonial: "Outstanding service from start to finish. They handle everything with professionalism. My property has never looked better. Highly trusted!", imageSrc: "http://img.b2bpic.net/free-photo/businesswoman_23-2148006200.jpg?_wi=2", imageAlt: "Jennifer Martinez"}, ]} speed={40} topMarqueeDirection="left" @@ -192,54 +142,33 @@ export default function HomePage() { 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: "Testimonials", - href: "#testimonials", - }, + label: "Testimonials", href: "#testimonials"}, ], }, { - 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"}, ], }, ]} From 8db90523b8327da218ce7ebd1de038a67ae26f05 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 20:28:19 +0000 Subject: [PATCH 4/4] Update src/app/services/page.tsx --- src/app/services/page.tsx | 89 +++++++++++---------------------------- 1 file changed, 25 insertions(+), 64 deletions(-) diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index dc8bd86..21085a4 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -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"}} /> @@ -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"}, ]} /> @@ -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"}, ], }, ]}