Add src/app/new-york/page.tsx

This commit is contained in:
2026-05-12 15:37:04 +00:00
parent 20452fb263
commit c4c85c8509

24
src/app/new-york/page.tsx Normal file
View File

@@ -0,0 +1,24 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterBase from '@/components/sections/footer/FooterBase';
export default function NewYorkPage() {
return (
<ThemeProvider>
<NavbarLayoutFloatingInline
navItems={[{ name: "Home", id: "/" }, { name: "Services", id: "/#services" }, { name: "Contact", id: "/#contact" }]}
brandName="BlueDropFix"
/>
<main className="pt-32 pb-20 px-6 max-w-4xl mx-auto">
<h1 className="text-5xl font-bold mb-6">Water Leak Repair in New York City, NY</h1>
<p className="text-lg mb-8">Serving NYC neighborhoods including Manhattan, Brooklyn, Queens, and The Bronx. We provide professional leak detection and emergency plumbing services.</p>
<h2 className="text-3xl font-semibold mb-4">Pricing Ranges</h2>
<p>Standard diagnostics start at $150. Emergency response services start at $350.</p>
</main>
<ContactCTA tag="NYC Service" title="Need Help in NYC?" description="Fast emergency response across the NYC metro area." buttons={[{ text: "Call Now", href: "tel:5550199" }]} />
<FooterBase columns={[]} logoText="BlueDropFix" />
</ThemeProvider>
);
}