Merge version_8 into main #8

Merged
bender merged 1 commits from version_8 into main 2026-05-11 02:02:23 +00:00

View File

@@ -3,7 +3,7 @@
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import HeroOverlayTestimonial from "@/components/sections/hero/HeroOverlayTestimonial";
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import MediaAbout from '@/components/sections/about/MediaAbout';
import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine';
import TeamCardTen from '@/components/sections/team/TeamCardTen';
@@ -43,29 +43,20 @@ export default function LandscapingPage() {
</div>
<div id="hero" data-section="hero">
<HeroOverlayTestimonial
<HeroBillboardCarousel
tag="Professional Landscaping"
tagIcon={Leaf}
title="Transform Your Outdoor Space"
description="Professional landscaping design, installation, and maintenance services. From lush gardens to stunning hardscapes, we bring your vision to life."
background={{ variant: "sparkles-gradient" }}
buttons={[
{ text: "Get Free Estimate", href: "#contact" },
{ text: "Our Services", href: "#services" },
]}
buttonAnimation="slide-up"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/hero.jpg"
imageAlt="Landscaped garden with manicured lawn and shrubs"
showDimOverlay={true}
textPosition="top"
testimonials={[
{
name: "Sarah M.", handle: "Homeowner", testimonial: "GreenScape completely transformed our backyard. The team was professional, creative, and delivered beyond our expectations.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.jpg", imageAlt: "Sarah M."
},
{
name: "David K.", handle: "Property Manager", testimonial: "We've used GreenScape for all our commercial properties. Their maintenance plans keep everything looking pristine year-round.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.jpg", imageAlt: "David K."
},
mediaItems={[
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/hero.jpg", imageAlt: "Beautifully landscaped garden with vibrant flowers and stone path" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-2.jpg", imageAlt: "Modern patio design with stone textures" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-3.jpg", imageAlt: "Lush green lawn and carefully pruned trees" }
]}
/>
</div>
@@ -158,4 +149,4 @@ export default function LandscapingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}