Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-03-19 18:53:04 +00:00

View File

@@ -11,6 +11,7 @@ import TestimonialCardFifteen from "@/components/sections/testimonial/Testimonia
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
import ContactFaq from "@/components/sections/contact/ContactFaq";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
import HeroBillboardTestimonial from "@/components/sections/hero/HeroBillboardTestimonial";
import { Clock, Droplet, Droplets, Hammer, HelpCircle, Leaf, Palette, Phone, Scissors, Sparkles, Trash2, TreePine, Users, Wind, Wrench, Zap } from "lucide-react";
export default function LandingPage() {
@@ -37,22 +38,38 @@ export default function LandingPage() {
{ name: "Testimonials", id: "testimonials" },
{ name: "FAQ", id: "faq" }
]}
button={{ text: "Get Free Quote", href: "#contact" }}
button={{ text: "Get Free Quote", href: "#hero" }}
/>
</div>
<div id="hero" data-section="hero">
<HeroLogo
logoText="Clean Cuts Lawn Care & Maintenance"
<HeroBillboardTestimonial
title="Clean Cuts Lawn Care & Maintenance"
description="Bringing precision, pride, and personality to every yard. Trusted locally for landscaping, cleanups, and lawn care you can count on — from first design to year-round maintenance."
background={{ variant: "plain" }}
testimonials={[
{
name: "Victoria J.", handle: "@homeowner", testimonial: "The best experience I've ever had with yard care. Professional, timely, fair priced, and extremely thorough.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-pleased-young-blonde-woman_141793-116583.jpg", imageAlt: "Victoria J. - Client testimonial"
},
{
name: "Julie O.", handle: "@satisfied", testimonial: "Amazing people to work with from start to finish. They removed a 40-year-old tree safely and beautifully.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-vector/flat-customer-satisfaction-design_23-2147946898.jpg", imageAlt: "Julie O. - Client testimonial"
},
{
name: "Paul O.", handle: "@trustedservice", testimonial: "We absolutely recommend Clean Cuts! Professional service every single time.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/confident-bearded-man-keeping-thumb-up-looking-happy-white-background-attractive-guy-smiling-camera-showing-approved-sign-isolated_574295-6108.jpg", imageAlt: "Paul O. - Client testimonial"
}
]}
buttons={[
{ text: "Get a Free Quote", href: "#contact" },
{ text: "See Our Work", href: "#gallery" }
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/reforestation-done-by-voluntary-group_23-2149500826.jpg"
imageAlt="Perfectly maintained residential lawn with professional team"
showDimOverlay={true}
tag="Professional Service"
tagIcon={Sparkles}
tagAnimation="slide-up"
mediaAnimation="slide-up"
ariaLabel="Clean Cuts - Professional lawn care and landscaping hero section"
/>
</div>
@@ -289,4 +306,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}