Files
01d2b33e-0145-4a8b-af70-98d…/src/app/page.tsx
2026-06-07 15:41:06 +00:00

482 lines
19 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import AboutMetric from '@/components/sections/about/AboutMetric';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import { CalendarDays, Users, Wrench } from "lucide-react";
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="mediumLarge"
sizing="large"
background="fluid"
cardStyle="gradient-radial"
primaryButtonStyle="double-inset"
secondaryButtonStyle="layered"
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "#home",
},
{
name: "Services",
id: "#services",
},
{
name: "About Us",
id: "#about",
},
{
name: "Reviews",
id: "#reviews",
},
{
name: "FAQ",
id: "#faq",
},
{
name: "Contact",
id: "#contact",
},
]}
brandName="Lenny's Plumbing"
button={{
text: "Call Now",
href: "tel:+15633913300",
}}
animateOnLoad={true}
/>
</div>
<div id="home" data-section="home">
<HeroBillboardGallery
background={{
variant: "downward-rays-static-grid",
}}
title="Lenny's Plumbing & Drain Cleaning"
description="Your Trusted Local Plumbers in Davenport, IA. Fast, Reliable, and Professional Service for All Your Plumbing Needs."
buttons={[
{
text: "Get a Free Estimate",
href: "#contact",
},
{
text: "Call Us Today",
href: "tel:+15633913300",
},
]}
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/water-tap-prevention-concentrated-man-leaning-water-faucet-touching-spout-pipe_259150-58276.jpg",
imageAlt: "Plumber working on a pipe",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/wrench-flexible-connector-dark-table_23-2147772298.jpg",
imageAlt: "Drain cleaning equipment",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/woman-calling-plumber-fox-bathroom-problems_23-2150990699.jpg",
imageAlt: "Water heater installation",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/mature-woman-posing-while-touching-her-face-skin-blue-t-shirt_176474-32790.jpg",
imageAlt: "Plumber talking to a customer",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/top-view-international-worker-s-day-with-engineer-tools_23-2150269664.jpg",
imageAlt: "Organized plumbing tools",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990735.jpg",
imageAlt: "Plumber fixing pipes under a sink",
},
]}
mediaAnimation="opacity"
/>
</div>
<div id="about" data-section="about">
<AboutMetric
useInvertedBackground={false}
title="Serving Davenport with Trust and Expertise"
metrics={[
{
icon: CalendarDays,
label: "Years in Service",
value: "20+",
},
{
icon: Users,
label: "Happy Customers",
value: "1000+",
},
{
icon: Wrench,
label: "Expert Technicians",
value: "Certified",
},
]}
metricsAnimation="slide-up"
/>
</div>
<div id="services" data-section="services">
<FeatureCardSeven
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
features={[
{
title: "Emergency Plumbing",
description: "24/7 rapid response for burst pipes, major leaks, and urgent plumbing crises. We're here when you need us most.",
imageSrc: "http://img.b2bpic.net/free-photo/woman-calling-plumber-solve-kitchen-problems_23-2150990674.jpg",
imageAlt: "Plumber fixing a burst pipe",
},
{
title: "Drain Cleaning & Repair",
description: "Expert drain cleaning for clogged sinks, toilets, showers, and main sewer lines. Say goodbye to slow drains.",
imageSrc: "http://img.b2bpic.net/free-photo/carpenter-working-sawmill-wood-manufacture_1303-22901.jpg",
imageAlt: "Plumber cleaning a clogged drain",
},
{
title: "Water Heater Services",
description: "Installation, repair, and maintenance for all types of water heaters, including tankless systems. Enjoy consistent hot water.",
imageSrc: "http://img.b2bpic.net/free-photo/man-installs-heating-system-house-checks-pipes-with-wrench_169016-55595.jpg",
imageAlt: "Technician installing a water heater",
},
{
title: "Pipe Repair & Installation",
description: "From minor pipe repairs to complete repiping, we ensure your water lines are secure, efficient, and up to code.",
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721548.jpg",
imageAlt: "Plumber working on new pipe installation",
},
{
title: "Leak Detection",
description: "Using advanced technology to accurately locate and repair hidden leaks, preventing further damage and saving you money.",
imageSrc: "http://img.b2bpic.net/free-photo/man-drying-glass-with-kitchen-towel-by-black-faucet-drying-dishes_169016-69554.jpg",
imageAlt: "Leak detection equipment",
},
{
title: "Fixture Installation",
description: "Professional installation of new faucets, sinks, toilets, showers, and other plumbing fixtures. Upgrade your home with ease.",
imageSrc: "http://img.b2bpic.net/free-photo/white-toilet-bowl-seat_74190-7769.jpg",
imageAlt: "Plumber installing a kitchen faucet",
},
]}
title="Our Comprehensive Plumbing Services"
description="From leaky faucets to complex drain issues, Lenny's Plumbing provides fast, reliable, and professional solutions for your home or business."
/>
</div>
<div id="solutions" data-section="solutions">
<ProductCardThree
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
carouselMode="buttons"
products={[
{
id: "product-1",
name: "Advanced Drain Snaking",
price: "Starting at $99",
imageSrc: "http://img.b2bpic.net/free-photo/white-kitchen-sink-faucet_58702-1832.jpg",
imageAlt: "Drain snaking tool",
},
{
id: "product-2",
name: "Hydro Jetting Service",
price: "Starting at $250",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-closeup-shot-water-pouring-water-drain_181624-18353.jpg",
imageAlt: "Hydro jetting hose",
},
{
id: "product-3",
name: "Water Filtration Systems",
price: "Custom Quote",
imageSrc: "http://img.b2bpic.net/free-photo/man-recording-making-coffee_23-2148551560.jpg",
imageAlt: "Whole house water filter",
},
{
id: "product-4",
name: "Sump Pump Installation",
price: "Starting at $400",
imageSrc: "http://img.b2bpic.net/free-photo/sanitary-equipment_93675-131936.jpg",
imageAlt: "Sump pump in a basement",
},
{
id: "product-5",
name: "Toilet Repair & Replacement",
price: "Starting at $120",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-working-as-plumber_23-2150746312.jpg",
imageAlt: "Toilet repair components",
},
{
id: "product-6",
name: "Faucet & Fixture Upgrade",
price: "Starting at $80",
imageSrc: "http://img.b2bpic.net/free-photo/person-washing-hands-stream-from-spring-kitchen-faucet-clean-hands-now_169016-69561.jpg",
imageAlt: "Modern kitchen faucet",
},
]}
title="Specialized Plumbing Solutions"
description="Beyond our core services, we offer specialized solutions to tackle unique plumbing challenges and enhance your home's water systems."
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardEleven
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
metrics={[
{
id: "m1",
value: "4.4 / 5",
title: "Average Rating",
description: "Consistently high customer satisfaction across all our services.",
imageSrc: "http://img.b2bpic.net/free-photo/architectural-blueprints_1359-498.jpg",
imageAlt: "Star rating icon",
},
{
id: "m2",
value: "111+",
title: "Positive Reviews",
description: "See what our happy customers in Davenport are saying about us.",
imageSrc: "http://img.b2bpic.net/free-photo/set-empty-pop-art-speech-bubbles_23-2147910087.jpg",
imageAlt: "Customer review icon",
},
{
id: "m3",
value: "20+ Years",
title: "Industry Experience",
description: "A long-standing history of reliable and expert plumbing work.",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-working-with-iron_23-2149916303.jpg",
imageAlt: "Plumber's tools icon",
},
{
id: "m4",
value: "Same Day",
title: "Emergency Response",
description: "Quick dispatch for urgent plumbing issues to minimize damage.",
imageSrc: "http://img.b2bpic.net/free-photo/delivery-man-holding-alarm-clock-green-t-shirt-cap-looking-worried_176474-11063.jpg",
imageAlt: "Fast clock icon",
},
]}
title="Why Choose Lenny's Plumbing?"
description="Our commitment to quality, speed, and customer satisfaction sets us apart as Davenport's premier plumbing service."
/>
</div>
<div id="reviews" data-section="reviews">
<TestimonialCardTwelve
useInvertedBackground={false}
testimonials={[
{
id: "1",
name: "Sarah J.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-attractive-unshaved-dark-skinned-man-with-afro-hairstyle-smiling-expressing-happiness-while-sitting-park-enjoying-nice-weather-listening-music_176420-19804.jpg",
imageAlt: "Sarah J.",
content: "Lenny's Plumbing saved us during a basement flood! Their team was at our house within an hour and fixed the issue quickly and professionally. Highly recommend their emergency service.",
},
{
id: "2",
name: "Michael C.",
imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-holding-each-other-s-hand_23-2147891266.jpg",
imageAlt: "Michael C.",
content: "We had a persistent slow drain that no one else could fix. Lenny's Hydro Jetting service cleared it right up, and it's been perfect ever since. Excellent work and fair pricing.",
},
{
id: "3",
name: "Emily R.",
imageSrc: "http://img.b2bpic.net/free-photo/female-sales-person-jewelry-store_1303-30652.jpg",
imageAlt: "Emily R.",
content: "The technicians from Lenny's Plumbing installed our new tankless water heater. They were courteous, efficient, and explained everything clearly. We're so happy with the upgrade!",
},
{
id: "4",
name: "David K.",
imageSrc: "http://img.b2bpic.net/free-photo/happy-mature-business-man-standing-office-cafe-leaning-counter-holding-jacket-shoulder-showing-thumb-up-like_74855-10007.jpg",
imageAlt: "David K.",
content: "Professional and reliable! Lenny's Plumbing re-piped our older home, and the process was smooth and hassle-free. The quality of work is outstanding, and our water pressure is amazing now.",
},
{
id: "5",
name: "Jessica L.",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-working-as-plumber_23-2150746293.jpg",
imageAlt: "Jessica L.",
content: "From leak detection to fixing a hidden pipe burst, Lenny's team was thorough and precise. They minimized damage and were incredibly responsive. A truly trustworthy plumbing service.",
},
]}
cardTitle="What Our Customers Say"
cardTag="Trusted Service"
cardAnimation="slide-up"
/>
</div>
<div id="social-proof" data-section="social-proof">
<SocialProofOne
textboxLayout="default"
useInvertedBackground={false}
names={[
"Local Home Builders Association",
"Licensed & Insured",
"Master Plumbers Guild",
"Davenport Business Alliance",
"Eco-Friendly Certified",
"BBB Accredited",
"Local Chamber of Commerce",
]}
title="Recognized & Certified for Excellence"
description="We adhere to the highest standards of professionalism and quality, backed by industry associations and local partnerships."
/>
</div>
<div id="faq" data-section="faq">
<FaqDouble
textboxLayout="default"
useInvertedBackground={false}
faqs={[
{
id: "faq-1",
title: "What areas do you serve?",
content: "We proudly serve Davenport, IA, and the surrounding Quad Cities metropolitan area. Contact us to confirm service availability in your specific location.",
},
{
id: "faq-2",
title: "Do you offer emergency plumbing services?",
content: "Yes, we provide 24/7 emergency plumbing services for urgent issues like burst pipes, severe leaks, and drain backups. Call us anytime for immediate assistance.",
},
{
id: "faq-3",
title: "How much does a plumbing service cost?",
content: "The cost varies depending on the service. We offer transparent pricing and provide a detailed estimate before any work begins. Free estimates are available for non-emergency services.",
},
{
id: "faq-4",
title: "Are your plumbers licensed and insured?",
content: "Absolutely. All our technicians are fully licensed, insured, and highly trained to ensure professional and reliable service every time.",
},
{
id: "faq-5",
title: "What types of water heaters do you service?",
content: "We service, repair, and install all major types of water heaters, including conventional tank water heaters and modern tankless water heaters.",
},
{
id: "faq-6",
title: "How often should I have my drains cleaned?",
content: "We recommend professional drain cleaning at least once every 1-2 years to prevent buildup and clogs, especially if you experience slow drains frequently.",
},
]}
title="Frequently Asked Questions"
description="Find quick answers to common questions about our plumbing services, pricing, and operational details."
faqsAnimation="slide-up"
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={false}
background={{
variant: "downward-rays-static",
}}
tag="Contact Us"
title="Get Your Plumbing Fixed Today!"
description="Reach out for emergency services or schedule a free estimate. We're here to help with all your plumbing and drain cleaning needs."
inputPlaceholder="Your Name / Email / Phone"
buttonText="Request Service"
termsText="By clicking Request Service, you agree to be contacted by Lenny's Plumbing."
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
videoSrc="http://img.b2bpic.net/free-photo/brutal-beard-worker-man-suit-construction-worker-safety-orange-helmet-near-steel-pipes-with-tape-measure-hand_627829-11415.jpg"
videoAriaLabel="Plumber working on pipes"
logoText="Lenny's Plumbing"
columns={[
{
title: "Services",
items: [
{
label: "Emergency Plumbing",
href: "#services",
},
{
label: "Drain Cleaning",
href: "#services",
},
{
label: "Water Heaters",
href: "#services",
},
{
label: "Pipe Repair",
href: "#services",
},
],
},
{
title: "Company",
items: [
{
label: "About Us",
href: "#about",
},
{
label: "Reviews",
href: "#reviews",
},
{
label: "FAQ",
href: "#faq",
},
],
},
{
title: "Contact",
items: [
{
label: "Get a Quote",
href: "#contact",
},
{
label: "Call Us: (563) 391-3300",
href: "tel:+15633913300",
},
{
label: "613 W 6th St, Davenport, IA",
href: "https://www.google.com/maps/search/613+W+6th+St+Apt+3,+Davenport,+IA+52803",
},
],
},
]}
copyrightText="© 2024 Lenny's Plumbing & Drain Cleaning. All rights reserved."
imageSrc="http://img.b2bpic.net/free-photo/brutal-beard-worker-man-suit-construction-worker-safety-orange-helmet-near-steel-pipes-with-tape-measure-hand_627829-11415.jpg"
imageAlt="plumber working on pipes loop video"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}