From 69f79cb49896fb55ada55aa09737b6dc64c2d1db Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 29 Mar 2026 03:56:23 +0000 Subject: [PATCH 1/3] Add src/app/hedge-trimming/page.tsx --- src/app/hedge-trimming/page.tsx | 51 +++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/app/hedge-trimming/page.tsx diff --git a/src/app/hedge-trimming/page.tsx b/src/app/hedge-trimming/page.tsx new file mode 100644 index 0000000..e769218 --- /dev/null +++ b/src/app/hedge-trimming/page.tsx @@ -0,0 +1,51 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterCard from '@/components/sections/footer/FooterCard'; + +export default function HedgeTrimmingPage() { + return ( + + + + + + + + + ); +} \ No newline at end of file -- 2.49.1 From cd0d78a33e49755fd9902225da302357baf29762 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 29 Mar 2026 03:56:24 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 575f0d2..7e9aa72 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; -import { Phone, Mail } from "lucide-react"; +import { Phone } from "lucide-react"; export default function LandingPage() { return ( @@ -31,6 +31,8 @@ export default function LandingPage() { navItems={[ { name: "Home", id: "home" }, { name: "Services", id: "services" }, + { name: "Irrigation", id: "irrigation" }, + { name: "Rock & Gravel", id: "rock-gravel" }, { name: "Why Us", id: "why-us" }, { name: "Reviews", id: "reviews" }, ]} @@ -60,8 +62,8 @@ export default function LandingPage() { useInvertedBackground={false} features={[ { id: 1, title: "Lawn Maintenance", description: "Weekly, bi-weekly & monthly mowing, edging, trimming, blowing & more.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BXDFgC7Q1QH0RYIW8wS68MTMTG/uploaded-1774756198244-5vkzgw2u.png", imageAlt: "Lawn mowing service" }, - { id: 2, title: "Landscaping Services", description: "Landscape cleanups, hedge trimming, Landscape maintenance, tree removal & trimming, irrigation repair & Installation, Rock & gravel installation & Removal.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BXDFgC7Q1QH0RYIW8wS68MTMTG/uploaded-1774683217001-qyt5vvru.png", imageAlt: "Landscape maintenance" }, - { id: 3, title: "Seasonal Cleanups", description: "Leaf removal, property cleanouts, and overgrown yard restoration.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BXDFgC7Q1QH0RYIW8wS68MTMTG/uploaded-1774683236779-lfs0cx8c.png", imageAlt: "Garden cleanup" }, + { id: 2, title: "Irrigation Repair & Installation", description: "Professional irrigation system repair, troubleshooting, and custom installation to keep your landscape lush and healthy.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BXDFgC7Q1QH0RYIW8wS68MTMTG/uploaded-1774683217001-qyt5vvru.png", imageAlt: "Irrigation services" }, + { id: 3, title: "Rock & Gravel Installation & Removal", description: "Transform your yard with professional rock and gravel services, including new installations and total removal.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BXDFgC7Q1QH0RYIW8wS68MTMTG/uploaded-1774683236779-lfs0cx8c.png", imageAlt: "Rock installation" }, ]} title="Our Services" description="Clean, sharp, and consistent results for every property we serve." -- 2.49.1 From a788ed1cf30679dff39a62b9b5f8086139f92da0 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 29 Mar 2026 03:56:24 +0000 Subject: [PATCH 3/3] Add src/app/tree-removal-trimming/page.tsx --- src/app/tree-removal-trimming/page.tsx | 51 ++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/app/tree-removal-trimming/page.tsx diff --git a/src/app/tree-removal-trimming/page.tsx b/src/app/tree-removal-trimming/page.tsx new file mode 100644 index 0000000..abe9582 --- /dev/null +++ b/src/app/tree-removal-trimming/page.tsx @@ -0,0 +1,51 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterCard from '@/components/sections/footer/FooterCard'; + +export default function TreeServicesPage() { + return ( + + + + + + + + + ); +} \ No newline at end of file -- 2.49.1