9 Commits

Author SHA1 Message Date
438f8a9deb Update src/app/page.tsx 2026-03-11 04:27:08 +00:00
931a487301 Update src/app/page.tsx 2026-03-11 04:26:44 +00:00
4f591cacaf Update src/app/page.tsx 2026-03-11 04:25:56 +00:00
5e88516f26 Merge version_1 into main
Merge version_1 into main
2026-03-11 04:19:57 +00:00
a49f6fbf0d Merge version_1 into main
Merge version_1 into main
2026-03-11 04:19:38 +00:00
a75baee331 Merge version_1 into main
Merge version_1 into main
2026-03-11 04:19:14 +00:00
5244f84e50 Merge version_1 into main
Merge version_1 into main
2026-03-11 04:18:42 +00:00
446fb1bec0 Merge version_1 into main
Merge version_1 into main
2026-03-11 04:18:18 +00:00
f640df6d95 Merge version_1 into main
Merge version_1 into main
2026-03-11 04:14:18 +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
title="Our Services"
description="Comprehensive plumbing solutions for your home"
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/circular-saw-carpenter-using-circular-saw-wood_169016-17649.jpg?_wi=1", imageAlt: "Drain cleaning service"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/manufacturer-teaching-new-employee-how-shape-wooden-bowl-disc-sander_482257-99053.jpg?_wi=1", imageAlt: "Leak detection service"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-sitting-near-heater-home_23-2149335095.jpg?_wi=1", imageAlt: "Water heater service"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/faucet-water-tap_1203-3196.jpg?_wi=1", imageAlt: "Faucet and toilet repair"
}
]}
background={{ variant: "plain" }}
/>
</div>
<div id="services" data-section="services">
<FeatureCardOne
title="Our Plumbing Services"
@@ -69,16 +92,16 @@ export default function LandingPage() {
animationType="slide-up"
features={[
{
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"
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?_wi=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"
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?_wi=2"
},
{
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"
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?_wi=2"
},
{
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"
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?_wi=2"
},
{
title: "Sewer Line Repair", description: "Trenchless sewer repairs available. Minimal disruption to your property with maximum effectiveness.", imageSrc: "http://img.b2bpic.net/free-photo/girl-putting-yellow-boots_23-2147770357.jpg"
@@ -197,4 +220,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}