diff --git a/src/app/irrigation/page.tsx b/src/app/irrigation/page.tsx index 84a8969..4ef78d6 100644 --- a/src/app/irrigation/page.tsx +++ b/src/app/irrigation/page.tsx @@ -3,8 +3,8 @@ 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 FooterCard from '@/components/sections/footer/FooterCard'; +import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; export default function IrrigationPage() { return ( @@ -21,35 +21,28 @@ export default function IrrigationPage() { headingFontWeight="bold" > - -
- -
- + /> + +
); diff --git a/src/app/page.tsx b/src/app/page.tsx index 1d745fa..41b3873 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -65,6 +65,7 @@ export default function LandingPage() { { 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: "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?_wi=1", 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?_wi=1", imageAlt: "Rock installation" }, + { id: 4, title: "Tree Care & Removal", description: "Safe, professional tree trimming, removal, and maintenance to protect your home and enhance your landscape.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BXDFgC7Q1QH0RYIW8wS68MTMTG/uploaded-1774683217001-qyt5vvru.png?_wi=1", imageAlt: "Tree care service" }, ]} title="Our Services" description="Clean, sharp, and consistent results for every property we serve." @@ -128,4 +129,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} diff --git a/src/app/rock-gravel/page.tsx b/src/app/rock-gravel/page.tsx index 6da13e3..2d534a1 100644 --- a/src/app/rock-gravel/page.tsx +++ b/src/app/rock-gravel/page.tsx @@ -3,8 +3,8 @@ 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 FooterCard from '@/components/sections/footer/FooterCard'; +import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; export default function RockGravelPage() { return ( @@ -21,35 +21,28 @@ export default function RockGravelPage() { headingFontWeight="bold" > - -
- -
- + /> + +
); diff --git a/src/app/tree-removal-trimming/page.tsx b/src/app/tree-removal-trimming/page.tsx index e2140a6..3ea48d9 100644 --- a/src/app/tree-removal-trimming/page.tsx +++ b/src/app/tree-removal-trimming/page.tsx @@ -3,50 +3,46 @@ 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 FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; import FooterCard from '@/components/sections/footer/FooterCard'; +import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; -export default function TreeCarePage() { +export default function TreeRemovalPage() { return ( - + - -
- -
-
- + -
- + /> +
);