5 Commits

Author SHA1 Message Date
beb32e6d76 Merge version_8 into main
Merge version_8 into main
2026-04-02 01:38:32 +00:00
e43d23e7b7 Update src/app/page.tsx 2026-04-02 01:38:29 +00:00
41561924f2 Merge version_8 into main
Merge version_8 into main
2026-04-02 01:38:03 +00:00
8c3259f8dc Update src/app/page.tsx 2026-04-02 01:38:00 +00:00
ba93822502 Merge version_7 into main
Merge version_7 into main
2026-04-02 01:33:06 +00:00

View File

@@ -4,12 +4,12 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactFaq from '@/components/sections/contact/ContactFaq'; import ContactFaq from '@/components/sections/contact/ContactFaq';
import FaqBase from '@/components/sections/faq/FaqBase'; import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven'; import TimelinePhoneView from '@/components/cardStack/layouts/timelines/TimelinePhoneView';
import FooterBase from '@/components/sections/footer/FooterBase'; import FooterBase from '@/components/sections/footer/FooterBase';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import { Phone, CheckCircle, Zap, Star } from "lucide-react"; import { Phone, Star, CheckCircle } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -51,40 +51,32 @@ export default function LandingPage() {
</div> </div>
<div id="services" data-section="services"> <div id="services" data-section="services">
<FeatureCardTwentySeven <TimelinePhoneView
animationType="slide-up"
gridVariant="three-columns-all-equal-width"
textboxLayout="split"
useInvertedBackground={true}
title="Premium Lawn Services" title="Premium Lawn Services"
description="Customized lawn care programs tailored to the needs of Hillsborough properties." description="Customized lawn care programs tailored to the needs of Hillsborough properties."
features={[ textboxLayout="split"
{ animationType="slide-up"
id: "1", title: "Precision Lawn Care", description: "Expert mowing and trimming services for a perfectly manicured look.", imageSrc: "http://img.b2bpic.net/free-photo/man-cutting-grass-with-lawn-mover-back-yard_1303-22793.jpg" items={[
}, { trigger: "Precision Mowing", content: "Expert mowing and trimming services for a perfectly manicured look.", imageOne: "http://img.b2bpic.net/free-photo/man-cutting-grass-with-lawn-mover-back-yard_1303-22793.jpg" },
{ { trigger: "Border Detailing", content: "Defining crisp edges along walkways and beds to enhance your curb appeal.", imageOne: "http://img.b2bpic.net/free-photo/cement-walkway-garden_1252-1024.jpg" },
id: "2", title: "Border Detailing", description: "Defining crisp edges along walkways and beds to enhance your curb appeal.", imageSrc: "http://img.b2bpic.net/free-photo/cement-walkway-garden_1252-1024.jpg" { trigger: "Seasonal Cleanups", content: "Comprehensive yard clearing to prepare your property for the changing seasons.", imageOne: "http://img.b2bpic.net/free-photo/landscape-gardening_1157-3212.jpg" }
},
{
id: "3", title: "Seasonal Cleanups", description: "Comprehensive yard clearing to prepare your property for the changing seasons.", imageSrc: "http://img.b2bpic.net/free-photo/landscape-gardening_1157-3212.jpg"
}
]} ]}
/> />
</div> </div>
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
<TestimonialCardThirteen <TestimonialCardSix
showRating={true}
animationType="slide-up" animationType="slide-up"
textboxLayout="split" textboxLayout="split"
useInvertedBackground={false} useInvertedBackground={true}
tag="Hillsborough's Choice" tag="Hillsborough Neighbors"
tagIcon={Star} tagIcon={Star}
title="Trusted by Hillsborough Neighbors" title="Google Reviews"
description="See why homeowners trust Five Star Lawn Maintenance." description="Hear from our satisfied Hillsborough neighbors about our five-star lawn maintenance."
testimonials={[ testimonials={[
{ id: "1", name: "John Smith", handle: "@johns", testimonial: "The best service I have ever used. My lawn looks incredible!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/female-gardener-holding-handle_651396-1543.jpg?_wi=1" }, { id: "1", name: "John Smith", handle: "Verified Local", testimonial: "The best service I have ever used. My lawn looks incredible!", icon: CheckCircle },
{ id: "2", name: "Sarah Miller", handle: "@sarahm", testimonial: "Always punctual and professional. Truly premium lawn care.", rating: 5, 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: "2", name: "Sarah Miller", handle: "Verified Local", testimonial: "Always punctual and professional. Truly premium lawn care.", icon: CheckCircle },
{ id: "3", name: "David R.", handle: "Verified Local", testimonial: "Finally a lawn service that actually shows up and does a great job.", icon: CheckCircle },
]} ]}
/> />
</div> </div>