15 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
290227d74d Update src/app/page.tsx 2026-05-01 17:41:18 +00:00
dfe926a576 Merge version_2 into main
Merge version_2 into main
2026-05-01 17:40:05 +00:00
841937f122 Switch to version 2: modified src/app/styles/base.css 2026-05-01 17:37:08 +00:00
e6b73e9632 Switch to version 2: modified src/app/page.tsx 2026-05-01 17:37:08 +00:00
9e2a7ec961 Switch to version 2: modified src/app/layout.tsx 2026-05-01 17:37:07 +00:00
d336c0b299 Switch to version 1: modified src/app/styles/base.css 2026-05-01 17:37:00 +00:00
7ca4ec248b Switch to version 1: modified src/app/page.tsx 2026-05-01 17:37:00 +00:00
3581bf74dd Switch to version 1: modified src/app/layout.tsx 2026-05-01 17:37:00 +00:00
b060c6810b Merge version_2 into main
Merge version_2 into main
2026-05-01 17:35:25 +00:00
0ce15caab5 Merge version_2 into main
Merge version_2 into main
2026-05-01 17:35:03 +00:00
4275d9cd2d Merge version_2 into main
Merge version_2 into main
2026-05-01 17:34:57 +00:00
c716691a66 Merge version_2 into main
Merge version_2 into main
2026-05-01 17:34:51 +00:00
43d7aa703a Merge version_2 into main
Merge version_2 into main
2026-05-01 17:33:59 +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."
@@ -135,7 +135,7 @@ export default function LandingPage() {
useInvertedBackground={false}
background={{ variant: "rotated-rays-animated" }}
text="Ready to transform your outdoor living space?"
buttons={[{ text: "Contact Us Now", href: "#" }]}
buttons={[{ text: "Request Your Free Consultation", href: "#" }]}
/>
</div>
@@ -149,4 +149,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}