Add src/app/emergency-plumbing/page.tsx

This commit is contained in:
2026-05-10 03:14:36 +00:00
parent 1f26c0cf0b
commit 75d2c7664d

View File

@@ -0,0 +1,93 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
export default function EmergencyPlumbingPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="reveal-blur"
borderRadius="pill"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Emergency Plumbing", id: "/emergency-plumbing" },
]}
brandName="ALL Connect Plumbing"
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboardTestimonial
title="24/7 Emergency Plumbing Services"
description="Critical plumbing failures don't wait for business hours. Our rapid-response team is on call to handle leaks, bursts, and backups instantly."
background={{ variant: "gradient-bars" }}
buttons={[{ text: "Call Emergency Hotline", href: "tel:+18005550199" }]}
imageSrc="http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721542.jpg"
/>
</div>
<div id="services" data-section="services">
<FeatureCardTwentyOne
title="Emergency Capabilities"
description="We specialize in rapid resolution for high-stress plumbing issues."
accordionItems={[
{ id: "e1", title: "Burst Pipe Repairs", content: "Immediate shutoff and reconstruction for water mains and supply lines." },
{ id: "e2", title: "Drain Backups", content: "Industrial-grade snaking and hydro-jetting to clear obstructions fast." },
{ id: "e3", title: "Water Heater Failure", content: "Rapid repair or replacement to restore your hot water service." }
]}
imageSrc="http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990737.jpg"
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardThirteen
title="Emergency Response Stories"
description="Neighbors saved from disaster share their experiences."
showRating={true}
animationType="slide-up"
textboxLayout="split"
testimonials={[
{ id: "et1", name: "Susan L.", handle: "Homeowner", testimonial: "They arrived at 3am and saved my entire basement from flooding!", rating: 5 }
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
tag="Help"
title="Emergency Dispatch"
description="Call us directly at 1-800-555-0199 for immediate service."
background={{ variant: "gradient-bars" }}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="ALL Connect Plumbing"
columns={[
{ title: "Quick Links", items: [{ label: "Home", href: "/" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}