Merge version_2 into main #7

Merged
bender merged 1 commits from version_2 into main 2026-03-11 04:26:00 +00:00

View File

@@ -9,6 +9,7 @@ import TestimonialCardFifteen from '@/components/sections/testimonial/Testimonia
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import { AlertCircle, Wrench, Phone, MapPin } from 'lucide-react';
export default function LandingPage() {
@@ -58,6 +59,28 @@ export default function LandingPage() {
/>
</div>
<div id="hero-carousel" data-section="hero-carousel">
<HeroBillboardCarousel
slides={[
{
id: "1", title: "Drain Cleaning", description: "Professional drain cleaning to clear blockages and restore flow. We use modern equipment for thorough results.", imageSrc: "http://img.b2bpic.net/free-photo/circular-saw-carpenter-using-circular-saw-wood_169016-17649.jpg", imageAlt: "Drain cleaning service", buttons: [{ text: "Learn More", href: "#services" }]
},
{
id: "2", title: "Leak Detection & Repair", description: "Expert leak detection using advanced technology. Fast repairs to prevent water damage and save on bills.", imageSrc: "http://img.b2bpic.net/free-photo/manufacturer-teaching-new-employee-how-shape-wooden-bowl-disc-sander_482257-99053.jpg", imageAlt: "Leak detection service", buttons: [{ text: "Learn More", href: "#services" }]
},
{
id: "3", title: "Water Heater Service", description: "Water heater installation, repair, and maintenance. Traditional and tankless options available.", imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-sitting-near-heater-home_23-2149335095.jpg", imageAlt: "Water heater service", buttons: [{ text: "Learn More", href: "#services" }]
},
{
id: "4", title: "Faucet & Toilet Repair", description: "Quick fixes for leaky faucets and running toilets. We get your bathroom back in working order fast.", imageSrc: "http://img.b2bpic.net/free-photo/faucet-water-tap_1203-3196.jpg", imageAlt: "Faucet and toilet repair", buttons: [{ text: "Learn More", href: "#services" }]
}
]}
carouselMode="buttons"
autoPlayInterval={5000}
animationType="slide-up"
/>
</div>
<div id="services" data-section="services">
<FeatureCardOne
title="Our Plumbing Services"
@@ -197,4 +220,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}