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

This commit is contained in:
2026-05-12 15:37:42 +00:00
parent cbe4f0bd65
commit 2baf9548bd

View File

@@ -6,10 +6,11 @@ import FooterBase from '@/components/sections/footer/FooterBase';
export default function NewYorkPage() { export default function NewYorkPage() {
return ( 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 <NavbarLayoutFloatingInline
navItems={[{ name: "Home", id: "/" }, { name: "Services", id: "/#services" }, { name: "Contact", id: "/#contact" }]} navItems={[{ name: "Home", id: "/" }, { name: "Services", id: "/#services" }, { name: "Contact", id: "/#contact" }]}
brandName="BlueDropFix" brandName="BlueDropFix"
button={{ text: "Call Now", href: "tel:5550199" }}
/> />
<main className="pt-32 pb-20 px-6 max-w-4xl mx-auto"> <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> <h1 className="text-5xl font-bold mb-6">Water Leak Repair in New York City, NY</h1>
@@ -17,7 +18,7 @@ export default function NewYorkPage() {
<h2 className="text-3xl font-semibold mb-4">Pricing Ranges</h2> <h2 className="text-3xl font-semibold mb-4">Pricing Ranges</h2>
<p>Standard diagnostics start at $150. Emergency response services start at $350.</p> <p>Standard diagnostics start at $150. Emergency response services start at $350.</p>
</main> </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" }]} /> <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" }]} background={{ variant: "plain" }} useInvertedBackground={false} />
<FooterBase columns={[]} logoText="BlueDropFix" /> <FooterBase columns={[]} logoText="BlueDropFix" />
</ThemeProvider> </ThemeProvider>
); );