Compare commits
39 Commits
version_2
...
version_10
| Author | SHA1 | Date | |
|---|---|---|---|
| dc64dd15cc | |||
| 5eccc3818b | |||
| 1d7b555b80 | |||
| af14eaea0d | |||
| 43de361c19 | |||
| bee3ccbd38 | |||
| 795a75da91 | |||
| cac17cf4a5 | |||
| 19c471c6ea | |||
| 936d97b5b7 | |||
| 8fb981e2f0 | |||
| 32c2b64140 | |||
| 1565349f5d | |||
| 4460c7ae22 | |||
| a305275259 | |||
| 4c4a30af6b | |||
| 8d31d16aa9 | |||
| 9430ee4813 | |||
| a71350035a | |||
| b6dd6f80c2 | |||
| 73edb1877f | |||
| ad0e409261 | |||
| 6a578b2ca8 | |||
| ef4e6d6945 | |||
| e0a998977e | |||
| cbae42a7f8 | |||
| caaa187931 | |||
| 28fe803a10 | |||
| e46023f7c6 | |||
| 930a227bde | |||
| 4c37ec28ac | |||
| d79b39c048 | |||
| 93b3a100a3 | |||
| 92aabffcfd | |||
| e8eaf82365 | |||
| 37c6201115 | |||
| 37c62e521d | |||
| 4f4181c7f8 | |||
| dc15327afb |
104
src/app/page.tsx
104
src/app/page.tsx
@@ -28,14 +28,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "home"},
|
||||
{
|
||||
name: "Services", id: "services"},
|
||||
{
|
||||
name: "About Us", id: "about"},
|
||||
{
|
||||
name: "Contact", id: "contact"},
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "About Us", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="H & H Outdoor Services"
|
||||
/>
|
||||
@@ -43,27 +39,19 @@ export default function LandingPage() {
|
||||
|
||||
<div id="home" data-section="home">
|
||||
<HeroBillboardRotatedCarousel
|
||||
background={{
|
||||
variant: "rotated-rays-static"}}
|
||||
background={{ variant: "rotated-rays-static" }}
|
||||
title="H & H Outdoor Services"
|
||||
description="Professional and rugged outdoor services across the Otways. From firewood to small rural fencing repair, we handle it all."
|
||||
buttons={[
|
||||
{
|
||||
text: "Get a Free Quote", href: "#contact"},
|
||||
{ text: "Get a Free Quote", href: "/contact" },
|
||||
]}
|
||||
carouselItems={[
|
||||
{
|
||||
id: "1", imageSrc: "http://img.b2bpic.net/free-photo/full-length-man-with-woman-holding-stones-by-vehicle_107420-9758.jpg?_wi=1", imageAlt: "Two workers on rural property"},
|
||||
{
|
||||
id: "2", imageSrc: "http://img.b2bpic.net/free-photo/full-length-man-with-woman-holding-stones-by-vehicle_107420-9758.jpg?_wi=2", imageAlt: "Workers standing together"},
|
||||
{
|
||||
id: "3", imageSrc: "http://img.b2bpic.net/free-photo/full-length-man-with-woman-holding-stones-by-vehicle_107420-9758.jpg?_wi=3", imageAlt: "Rural landscape team"},
|
||||
{
|
||||
id: "4", imageSrc: "http://img.b2bpic.net/free-photo/full-length-man-with-woman-holding-stones-by-vehicle_107420-9758.jpg?_wi=4", imageAlt: "Trusted outdoor services"},
|
||||
{
|
||||
id: "5", imageSrc: "http://img.b2bpic.net/free-photo/full-length-man-with-woman-holding-stones-by-vehicle_107420-9758.jpg?_wi=5", imageAlt: "Otways based team"},
|
||||
{
|
||||
id: "6", imageSrc: "http://img.b2bpic.net/free-photo/full-length-man-with-woman-holding-stones-by-vehicle_107420-9758.jpg?_wi=6", imageAlt: "Professional outdoor support"},
|
||||
{ id: "1", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8xfuwCsAWLRfdbSEcn0hfaDdM/uploaded-1775793016379-q01ofvzz.jpg", imageAlt: "Two workers on rural property" },
|
||||
{ id: "2", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8xfuwCsAWLRfdbSEcn0hfaDdM/uploaded-1775789581470-z38rm8pj.jpg", imageAlt: "Workers standing together" },
|
||||
{ id: "3", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8xfuwCsAWLRfdbSEcn0hfaDdM/uploaded-1775792886520-5ud7az04.jpg", imageAlt: "Rural landscape team" },
|
||||
{ id: "4", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8xfuwCsAWLRfdbSEcn0hfaDdM/uploaded-1775793449891-u2y9pi2d.jpg", imageAlt: "Trusted outdoor services" },
|
||||
{ id: "5", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8xfuwCsAWLRfdbSEcn0hfaDdM/uploaded-1775789581470-umm98p79.jpg", imageAlt: "Otways based team" },
|
||||
{ id: "6", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8xfuwCsAWLRfdbSEcn0hfaDdM/uploaded-1775789551559-09cgsad7.jpg", imageAlt: "Professional outdoor support" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -73,42 +61,28 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Firewood Collection & Delivery", description: "Quality seasoned firewood delivered to your door.", imageSrc: "http://img.b2bpic.net/free-photo/mature-lumberjack-resting-after-splitting-wood_329181-4613.jpg", imageAlt: "Firewood"},
|
||||
{
|
||||
title: "Lawn Mowing & Maintenance", description: "Professional lawn care keeping your property looking sharp.", imageSrc: "http://img.b2bpic.net/free-photo/stylish-man-glasses-brown-jacket-hat-posed-green-field_627829-6374.jpg", imageAlt: "Lawn mowing"},
|
||||
{
|
||||
title: "Garden Maintenance", description: "Expert pruning, weeding, and garden care services.", imageSrc: "http://img.b2bpic.net/free-photo/man-taking-care-flowers_23-2147768465.jpg", imageAlt: "Gardening"},
|
||||
{
|
||||
title: "Cleaning Services", description: "Pressure cleaning for concrete, driveways, and decks.", imageSrc: "http://img.b2bpic.net/free-photo/father-swinging-child-by-arms-beachfront_23-2148146326.jpg", imageAlt: "Pressure washing"},
|
||||
{
|
||||
title: "Wheelie Bin Sanitisation", description: "Keep your bins clean and hygienic.", imageSrc: "http://img.b2bpic.net/free-photo/young-asian-man-put-his-credit-card-removes-cash-from-green-atm_627829-1126.jpg", imageAlt: "Bin cleaning"},
|
||||
{
|
||||
title: "Rural Fencing & Repair", description: "Reliable fencing and property repairs for rural lands.", imageSrc: "http://img.b2bpic.net/free-photo/focused-wire_1361-91.jpg", imageAlt: "Fencing"},
|
||||
{
|
||||
title: "Waste Disposal & Removal", description: "Efficient rubbish removal for farm or yard waste.", imageSrc: "http://img.b2bpic.net/free-photo/people-taking-community-action_23-2149232507.jpg", imageAlt: "Waste removal"},
|
||||
{
|
||||
title: "General Maintenance", description: "Including rural plumbing and general property repairs.", imageSrc: "http://img.b2bpic.net/free-photo/plants-gardening-tools_23-2148905233.jpg", imageAlt: "Rural maintenance"},
|
||||
{ title: "Firewood Collection & Delivery", description: "High-quality, seasoned hardwood sourced locally and delivered directly to your home for reliable winter warmth.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8xfuwCsAWLRfdbSEcn0hfaDdM/uploaded-1775789605157-cdeqpbz2.jpg", imageAlt: "Firewood" },
|
||||
{ title: "Lawn Mowing & Maintenance", description: "Professional-grade mowing and edge trimming to keep your lawns pristine and healthy year-round.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8xfuwCsAWLRfdbSEcn0hfaDdM/uploaded-1775789551559-tdqwhk6u.jpg", imageAlt: "Lawn mowing" },
|
||||
{ title: "Garden Care", description: "Comprehensive garden maintenance, including pruning, weeding, mulching, and general tidying for a vibrant outdoor space.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8xfuwCsAWLRfdbSEcn0hfaDdM/uploaded-1775789551559-fm70pwgh.jpg", imageAlt: "Gardening" },
|
||||
{ title: "Pressure Cleaning", description: "Restore surfaces with our high-pressure cleaning services for driveways, decks, walkways, and patio areas.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8xfuwCsAWLRfdbSEcn0hfaDdM/uploaded-1775789551559-xrdahcd0.jpg", imageAlt: "Pressure washing" },
|
||||
{ title: "Bin Sanitisation", description: "Eliminate odours and bacteria with our thorough, eco-friendly sanitisation process for your wheelie bins.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8xfuwCsAWLRfdbSEcn0hfaDdM/uploaded-1775789581470-jxialwje.jpg", imageAlt: "Bin cleaning" },
|
||||
{ title: "Rural Fencing & Repair", description: "Sturdy post-and-wire fencing solutions, repairs, and gate maintenance specifically tailored for rural properties.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8xfuwCsAWLRfdbSEcn0hfaDdM/uploaded-1775789581470-1hz3orop.jpg", imageAlt: "Fencing" },
|
||||
{ title: "Waste Removal", description: "Quick, clean removal of green waste, scrap, or general debris from your yard to maintain a clutter-free property.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8xfuwCsAWLRfdbSEcn0hfaDdM/uploaded-1775789551559-2jnzcd7r.jpg", imageAlt: "Waste removal" },
|
||||
{ title: "Property Maintenance", description: "General handy-man services and property upkeep, covering minor repairs and rural facility maintenance needs.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8xfuwCsAWLRfdbSEcn0hfaDdM/uploaded-1775789581470-v1br0xc0.jpg?_wi=2", imageAlt: "Rural maintenance" },
|
||||
]}
|
||||
title="Our Services"
|
||||
description="Comprehensive outdoor solutions for rural and residential needs."
|
||||
description="We offer reliable, hardworking outdoor services to keep your rural or residential property in top condition."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<AboutMetric
|
||||
useInvertedBackground={true}
|
||||
title="Trusted Local Service"
|
||||
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."
|
||||
metrics={[
|
||||
{
|
||||
icon: Wrench,
|
||||
label: "Years Experience", value: "10+"},
|
||||
{
|
||||
icon: MapPin,
|
||||
label: "Service Locations", value: "Otways"},
|
||||
{
|
||||
icon: CheckCircle,
|
||||
label: "Happy Clients", value: "500+"},
|
||||
{ icon: Wrench, label: "Expertise", value: "10+ Years" },
|
||||
{ icon: MapPin, label: "Regions", value: "Otways Area" },
|
||||
{ icon: CheckCircle, label: "Service", value: "Reliable" },
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -117,27 +91,23 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars"}}
|
||||
text="Get in touch for a quote: 0400 000 000 | 0400 111 222 or email hello@hnhoutdoor.com.au"
|
||||
background={{ variant: "gradient-bars" }}
|
||||
text="H & H Outdoor Services.
|
||||
Phone Nick: 0429 772 725.
|
||||
Phone Harley: 0467 557 976.
|
||||
Email: hhoutdoorservicesotways@gmail.com"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Home", href: "#home"},
|
||||
{
|
||||
label: "Services", href: "#services"},
|
||||
{
|
||||
label: "About", href: "#about"},
|
||||
{
|
||||
label: "Contact", href: "#contact"},
|
||||
],
|
||||
},
|
||||
{ items: [
|
||||
{ label: "Home", href: "/home" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
] },
|
||||
]}
|
||||
logoText="H & H Outdoor Services"
|
||||
/>
|
||||
@@ -145,4 +115,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user