Add src/app/baltimore/page.tsx
This commit is contained in:
22
src/app/baltimore/page.tsx
Normal file
22
src/app/baltimore/page.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
"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>
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[{name: "Home", id: "/"}, {name: "Los Angeles", id: "/los-angeles"}, {name: "Atlanta", id: "/atlanta"}, {name: "Baltimore", id: "/baltimore"}]}
|
||||
brandName="BlueDropFix"
|
||||
/>
|
||||
<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"}]} />
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user