Update src/app/services/plumbing/page.tsx

This commit is contained in:
2026-04-04 01:46:00 +00:00
parent 25f857aa49
commit b25384fbd6

View File

@@ -6,14 +6,20 @@ import FooterCard from '@/components/sections/footer/FooterCard';
export default function PlumbingPage() {
return (
<ThemeProvider>
<NavbarStyleApple navItems={[{name: "Home", id: "/"}, {name: "Services", id: "/services"}, {name: "Plumbing", id: "/services/plumbing"}, {name: "Electrical", id: "/services/electrical"}, {name: "Emergency", id: "/services/emergency"}, {name: "About", id: "/about"}, {name: "Contact", id: "/contact"}]} brandName="LocalPro" />
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<div id="nav" data-section="nav">
<NavbarStyleApple navItems={[{name: "Home", id: "/"}, {name: "Services", id: "/services"}, {name: "Plumbing", id: "/services/plumbing"}, {name: "Electrical", id: "/services/electrical"}, {name: "Emergency", id: "/services/emergency"}, {name: "About", id: "/about"}, {name: "Contact", id: "/contact"}]} />
</div>
<div className="pt-32 pb-20 px-6 max-w-5xl mx-auto">
<h1 className="text-5xl font-bold mb-6">Plumbing Services</h1>
<p className="text-xl text-gray-600">Professional plumbing solutions for your residential needs, including leak repairs, pipe installation, and drain clearing.</p>
</div>
<ContactCTA tag="Get Help" title="Need a Plumber?" description="Contact us today to schedule your service." buttons={[{text: "Call Now", href: "tel:5551234567"}]} />
<FooterCard logoText="LocalPro" />
<div id="contact" data-section="contact">
<ContactCTA tag="Get Help" title="Need a Plumber?" description="Contact us today to schedule your service." buttons={[{text: "Call Now", href: "tel:5551234567"}]} background={{ variant: "plain" }} useInvertedBackground={false} />
</div>
<div id="footer" data-section="footer">
<FooterCard logoText="LocalPro" />
</div>
</ThemeProvider>
);
}