2 Commits

Author SHA1 Message Date
31de53a7a7 Update src/app/page.tsx 2026-05-01 17:43:46 +00:00
1468815327 Merge version_3 into main
Merge version_3 into main
2026-05-01 17:41:21 +00:00

View File

@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
@@ -62,13 +62,13 @@ export default function LandingPage() {
</div>
<div id="features" data-section="features">
<FeatureCardEight
<FeatureCardNineteen
textboxLayout="split"
useInvertedBackground={false}
features={[
{ title: "Garden Maintenance", description: "Full-service horticultural care to keep your gardens vibrant throughout the year.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D8GL6afQtAHfWQihZ8f5uk5DAm/uploaded-1777657187702-fr72mgtd.png", imageAlt: "Garden maintenance" },
{ title: "Landscape Design", description: "Custom designs featuring native Australian plants and sustainable environmental practices.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-landscape-with-street_23-2149964957.jpg", imageAlt: "Landscape design" },
{ title: "Hardscaping & Paving", description: "Professional construction of pathways, patios, and outdoor structural elements.", imageSrc: "http://img.b2bpic.net/free-photo/stepping-stone-garden-path_1252-1028.jpg", imageAlt: "Hardscaping" },
{ title: "Garden Maintenance", subtitle: "Comprehensive Care", description: "Full-service horticultural care to keep your gardens vibrant throughout the year.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D8GL6afQtAHfWQihZ8f5uk5DAm/uploaded-1777657187702-fr72mgtd.png", imageAlt: "Garden maintenance", tag: "Maintenance" },
{ title: "Landscape Design", subtitle: "Expert Planning", description: "Custom designs featuring native Australian plants and sustainable environmental practices.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-landscape-with-street_23-2149964957.jpg", imageAlt: "Landscape design", tag: "Design" },
{ title: "Hardscaping & Paving", subtitle: "Structural Excellence", description: "Professional construction of pathways, patios, and outdoor structural elements.", imageSrc: "http://img.b2bpic.net/free-photo/stepping-stone-garden-path_1252-1028.jpg", imageAlt: "Hardscaping", tag: "Construction" },
]}
title="Our Professional Services"
description="Comprehensive landscaping solutions tailored to your property's unique needs."
@@ -149,4 +149,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}