Update src/app/los-angeles/page.tsx

This commit is contained in:
2026-05-12 15:37:41 +00:00
parent 788f8a777f
commit cbe4f0bd65

View File

@@ -1,21 +1,21 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ContactCTA from '@/components/sections/contact/ContactCTA';
export default function LocationPage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<NavbarLayoutFloatingInline
navItems={[{name: "Home", id: "/"}, {name: "Los Angeles", id: "/los-angeles"}, {name: "Atlanta", id: "/atlanta"}, {name: "Baltimore", id: "/baltimore"}]}
brandName="BlueDropFix"
button={{ text: "Call Now", href: "tel:5550199" }}
/>
<div className="pt-32 pb-20 px-6 max-w-4xl mx-auto">
<h1 className="text-4xl font-bold mb-6">Emergency Water Repairs in Los Angeles, CA</h1>
<p className="text-lg mb-4">BlueDropFix provides top-tier leak detection and plumbing repair across the Los Angeles area. We serve neighborhoods including Santa Monica, Beverly Hills, Downtown LA, and Silver Lake.</p>
<p className="text-lg mb-8">Whether you're dealing with a sudden pipe burst or slow leaks causing structural damage, our professional technicians are available 24/7. Pricing typically ranges from $150 for diagnostic inspections to custom quotes for major pipe restoration projects.</p>
<ContactCTA tag="Get Help" title="Need LA Service?" description="Fast emergency response in your LA neighborhood." buttons={[{text: "Call Now", href: "tel:5550199"}]} />
<ContactCTA tag="Get Help" title="Need LA Service?" description="Fast emergency response in your LA neighborhood." buttons={[{text: "Call Now", href: "tel:5550199"}]} background={{ variant: "plain" }} useInvertedBackground={false} />
</div>
</ThemeProvider>
);