Merge version_5 into main #23

Merged
bender merged 1 commits from version_5 into main 2026-03-11 06:38:29 +00:00

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import HeroLogo from "@/components/sections/hero/HeroLogo";
import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel";
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo";
@@ -47,9 +47,11 @@ export default function HomePage() {
{/* Hero Section */}
<div id="hero" data-section="hero">
<HeroLogo
logoText="W&M Services"
description="Transform Your Outdoor Space with Professional Landscaping & Home Improvement Services"
<HeroBillboardRotatedCarousel
title="Transform Your Outdoor Space"
description="Professional landscaping & home improvement services in Washington DC"
tag="Modern Design"
tagIcon={Star}
buttons={[
{
text: "Call Now +1 202-361-8677", href: "tel:+12023618677"
@@ -58,11 +60,31 @@ export default function HomePage() {
text: "Get Free Quote", href: "#contact"
},
]}
imageSrc="http://img.b2bpic.net/free-photo/back-view-young-woman-taking-care-plants_23-2148509882.jpg"
imageAlt="Professional landscaping transformation in Washington DC"
showDimOverlay={true}
background={{ variant: "sparkles-gradient" }}
buttonAnimation="slide-up"
ariaLabel="Hero section - W&M Services landscaping"
tagAnimation="slide-up"
carouselItems={[
{
id: "1", imageSrc: "http://img.b2bpic.net/free-photo/back-view-young-woman-taking-care-plants_23-2148509882.jpg", imageAlt: "Professional landscaping transformation"
},
{
id: "2", imageSrc: "http://img.b2bpic.net/free-photo/pensive-middle-aged-gardener-holding-small-thuja-pot-bearded-garden-worker-glasses-wearing-blue-shirt-apron-growing-evergreen-plants-greenhouse-commercial-gardening-summer-concept_74855-12936.jpg", imageAlt: "Expert landscaping design"
},
{
id: "3", imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-wooden-criss-cross-fence-with-blurred_181624-16317.jpg", imageAlt: "Premium fence installation"
},
{
id: "4", imageSrc: "http://img.b2bpic.net/free-photo/view-robot-tending-maintaining-gardens_23-2151803953.jpg", imageAlt: "Modern outdoor living"
},
{
id: "5", imageSrc: "http://img.b2bpic.net/free-photo/japanese-culture-house-entrance_23-2149301087.jpg", imageAlt: "Beautiful gate design"
},
{
id: "6", imageSrc: "http://img.b2bpic.net/free-photo/african-american-lady-safety-helmet-writing-notepad-near-building-construction_23-2148039982.jpg", imageAlt: "Project planning"
},
]}
autoPlay={true}
autoPlayInterval={4000}
/>
</div>
@@ -365,4 +387,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}