16 Commits

Author SHA1 Message Date
80e1e6da71 Update src/app/page.tsx 2026-04-10 04:38:30 +00:00
8e78044793 Update src/app/page.tsx 2026-04-10 04:32:27 +00:00
a83610bf77 Update src/app/page.tsx 2026-04-10 04:30:05 +00:00
7535278470 Update src/app/page.tsx 2026-04-10 04:28:36 +00:00
1ddd8f1b9c Update src/app/page.tsx 2026-04-10 04:28:03 +00:00
9e1344bd07 Merge version_10 into main
Merge version_10 into main
2026-04-10 04:25:31 +00:00
1d7b555b80 Update src/app/page.tsx 2026-04-10 04:25:28 +00:00
038ea78264 Merge version_10 into main
Merge version_10 into main
2026-04-10 04:07:57 +00:00
af14eaea0d Update src/app/page.tsx 2026-04-10 04:07:51 +00:00
43de361c19 Merge version_9 into main
Merge version_9 into main
2026-04-10 04:05:24 +00:00
bee3ccbd38 Update src/app/page.tsx 2026-04-10 04:05:21 +00:00
795a75da91 Merge version_8 into main
Merge version_8 into main
2026-04-10 04:00:29 +00:00
cac17cf4a5 Update src/app/page.tsx 2026-04-10 04:00:26 +00:00
19c471c6ea Merge version_7 into main
Merge version_7 into main
2026-04-10 03:57:54 +00:00
8fb981e2f0 Merge version_7 into main
Merge version_7 into main
2026-04-10 03:56:53 +00:00
1565349f5d Merge version_7 into main
Merge version_7 into main
2026-04-10 03:56:29 +00:00

View File

@@ -3,7 +3,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import AboutMetric from '@/components/sections/about/AboutMetric';
import ContactText from '@/components/sections/contact/ContactText';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
@@ -78,7 +78,8 @@ export default function LandingPage() {
<div id="about" data-section="about">
<AboutMetric
useInvertedBackground={true}
title="About Us:Meet Harley and Nick — the team behind H & H Outdoor Services. Based in the heart of the Otways, we're two local blokes who take pride in hard work and getting the job done right. Whether it's splitting firewood, mowing your lawns or paddock, fixing a fence line, or clearing green waste, no job is too big or too small. We know the Otways and we know the land. If you need a hand with something around your property, give us a call."
title="About Us:
Meet Harley and Nick — the team behind H & H Outdoor Services. Based in the heart of the Otways, we're two local blokes who take pride in hard work and getting the job done right. Whether it's splitting firewood, mowing your lawns or paddock, fixing a fence line, or clearing green waste, no job is too big or too small. We know the Otways and we know the land. If you need a hand with something around your property, give us a call.\n\n"
metrics={[
{ icon: Wrench, label: "Expertise", value: "10+ Years" },
{ icon: MapPin, label: "Regions", value: "Otways Area" },
@@ -89,13 +90,18 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={false}
background={{ variant: "gradient-bars" }}
text="H & H Outdoor Services.
Phone Nick: 0429 772 725.
<ContactCTA
tag="Get in touch"
title="H & H Outdoor Services"
description="Phone Nick: 0429 772 725.
Phone Harley: 0467 557 976.
Email: hhoutdoorservicesotways@gmail.com"
buttons={[
{ text: "Call Nick", href: "tel:0429772725" },
{ text: "Call Harley", href: "tel:0467557976" },
]}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
@@ -115,4 +121,4 @@ Email: hhoutdoorservicesotways@gmail.com"
</ReactLenis>
</ThemeProvider>
);
}
}