Update src/app/baltimore/page.tsx

This commit is contained in:
2026-05-12 15:37:39 +00:00
parent daf900649e
commit ef3f35d148

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 Baltimore, MD</h1>
<p className="text-lg mb-4">Providing expert water repair services across Baltimore including Inner Harbor, Fells Point, and Federal Hill. We are Baltimore's reliable partner for leak detection and pipe restoration.</p>
<p className="text-lg mb-8">We are ready for your emergency with 24/7 response. Our service pricing remains transparent with diagnostic visits starting at just $150. Contact us to schedule professional assistance today.</p>
<ContactCTA tag="Get Help" title="Need Baltimore Service?" description="Fast emergency response in your Baltimore neighborhood." buttons={[{text: "Call Now", href: "tel:5550199"}]} />
<ContactCTA tag="Get Help" title="Need Baltimore Service?" description="Fast emergency response in your Baltimore neighborhood." buttons={[{text: "Call Now", href: "tel:5550199"}]} background={{ variant: "plain" }} useInvertedBackground={false} />
</div>
</ThemeProvider>
);