Merge version_4 into main #5

Merged
bender merged 1 commits from version_4 into main 2026-04-01 22:07:09 +00:00

View File

@@ -4,12 +4,12 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactFaq from '@/components/sections/contact/ContactFaq';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
import FooterBase from '@/components/sections/footer/FooterBase';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import { Phone } from "lucide-react";
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import { Phone, CheckCircle, MapPin, ShieldCheck, Zap } from "lucide-react";
export default function LandingPage() {
return (
@@ -51,29 +51,36 @@ export default function LandingPage() {
</div>
<div id="services" data-section="services">
<FeatureCardSix
<FeatureCardTen
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={true}
title="Premium Lawn Services"
description="Customized lawn care programs tailored to the needs of Hillsborough properties."
features={[
{ id: 1, title: "Precision Lawn Mowing", description: "Precision cutting and grass grooming for a lush look.", imageSrc: "http://img.b2bpic.net/free-photo/man-cutting-grass-with-lawn-mover-back-yard_1303-22793.jpg", imageAlt: "Mowing" },
{ id: 2, title: "Precision Edging", description: "Defining your borders for clean lines and polished curb appeal.", imageSrc: "http://img.b2bpic.net/free-photo/cement-walkway-garden_1252-1024.jpg", imageAlt: "Edging" },
{ id: 3, title: "Sustainable Lawn Care", description: "Comprehensive fertilization and weed control programs.", imageSrc: "http://img.b2bpic.net/free-photo/lush-green-foliage-sunlight_632498-60880.jpg", imageAlt: "Lawn Health" },
{
id: "1", title: "Precision Lawn Care", description: "Expert mowing and grass grooming.", media: { imageSrc: "http://img.b2bpic.net/free-photo/man-cutting-grass-with-lawn-mover-back-yard_1303-22793.jpg", imageAlt: "Mowing" },
items: [{ icon: Zap, text: "Precision cutting" }, { icon: CheckCircle, text: "Uniform growth" }],
reverse: false
},
{
id: "2", title: "Property Detailing", description: "Defining borders for clean curb appeal.", media: { imageSrc: "http://img.b2bpic.net/free-photo/cement-walkway-garden_1252-1024.jpg", imageAlt: "Edging" },
items: [{ icon: MapPin, text: "Detailed edging" }, { icon: ShieldCheck, text: "Border integrity" }],
reverse: true
}
]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwo
animationType="depth-3d"
<TestimonialCardFive
textboxLayout="split"
useInvertedBackground={false}
title="Trusted by Hillsborough Neighbors"
description="See why homeowners trust Five Star Lawn Maintenance."
testimonials={[
{ id: "1", name: "John Smith", role: "Homeowner", testimonial: "The best service I have ever used. My lawn looks incredible!", imageSrc: "http://img.b2bpic.net/free-photo/female-gardener-holding-handle_651396-1543.jpg?_wi=1" },
{ id: "2", name: "Sarah Miller", role: "Homeowner", testimonial: "Always punctual and professional. Truly premium lawn care.", imageSrc: "http://img.b2bpic.net/free-photo/work-life-joyful-middle-aged-man-comfortable-casual-clothes-talking-smartphone-gesturing-while-sitting-open-terrace-country-house-sunny-day_259150-59318.jpg" },
{ id: "1", name: "John Smith", date: "2024-05-12", title: "Exceptional Results", quote: "The best service I have ever used. My lawn looks incredible!", tag: "Review", avatarSrc: "http://img.b2bpic.net/free-photo/female-gardener-holding-handle_651396-1543.jpg?_wi=1" },
{ id: "2", name: "Sarah Miller", date: "2024-04-20", title: "Truly Premium", quote: "Always punctual and professional. Truly premium lawn care.", tag: "Review", avatarSrc: "http://img.b2bpic.net/free-photo/work-life-joyful-middle-aged-man-comfortable-casual-clothes-talking-smartphone-gesturing-while-sitting-open-terrace-country-house-sunny-day_259150-59318.jpg" },
]}
/>
</div>