Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #3.
This commit is contained in:
@@ -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 Atlanta, GA</h1>
|
||||
<p className="text-lg mb-4">BlueDropFix serves the Atlanta metro area, from Buckhead and Midtown to Decatur and Sandy Springs. We specialize in precision leak detection and rapid emergency response.</p>
|
||||
<p className="text-lg mb-8">Our expert plumbers are local specialists. Standard diagnostics start at $150, with emergency services available 24/7. Trust our team to protect your Atlanta property from water damage.</p>
|
||||
<ContactCTA tag="Get Help" title="Need Atlanta Service?" description="Fast emergency response in your Atlanta neighborhood." buttons={[{text: "Call Now", href: "tel:5550199"}]} />
|
||||
<ContactCTA tag="Get Help" title="Need Atlanta Service?" description="Fast emergency response in your Atlanta neighborhood." buttons={[{text: "Call Now", href: "tel:5550199"}]} background={{ variant: "plain" }} useInvertedBackground={false} />
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
|
||||
@@ -6,10 +6,11 @@ import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
|
||||
export default function ChicagoPage() {
|
||||
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: "Services", id: "/#services" }, { name: "Contact", id: "/#contact" }]}
|
||||
brandName="BlueDropFix"
|
||||
button={{ text: "Call Now", href: "tel:5550199" }}
|
||||
/>
|
||||
<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 Chicago, IL</h1>
|
||||
@@ -17,7 +18,7 @@ export default function ChicagoPage() {
|
||||
<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="Chicago Service" title="Need Help in Chicago?" description="Fast emergency response across the Chicago metro area." buttons={[{ text: "Call Now", href: "tel:5550199" }]} />
|
||||
<ContactCTA tag="Chicago Service" title="Need Help in Chicago?" description="Fast emergency response across the Chicago metro area." buttons={[{ text: "Call Now", href: "tel:5550199" }]} background={{ variant: "plain" }} useInvertedBackground={false} />
|
||||
<FooterBase columns={[]} logoText="BlueDropFix" />
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
@@ -8,7 +7,7 @@ import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
|
||||
export default function ClevelandPage() {
|
||||
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">
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
@@ -24,6 +23,7 @@ export default function ClevelandPage() {
|
||||
logoText="BlueDropFix Cleveland"
|
||||
description="Expert emergency water leak detection and repair in Cleveland, OH. Serving Shaker Heights, Lakewood, and Downtown. 24/7 rapid response."
|
||||
buttons={[{ text: "Schedule Repair", href: "#" }]}
|
||||
background={{ variant: "plain" }}
|
||||
/>
|
||||
<FooterBase
|
||||
columns={[]}
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
@@ -8,7 +7,7 @@ import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
|
||||
export default function DenverPage() {
|
||||
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">
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
@@ -24,6 +23,7 @@ export default function DenverPage() {
|
||||
logoText="BlueDropFix Denver"
|
||||
description="Professional water repair services across Denver, CO. Serving Cherry Creek, Highlands, and Capitol Hill. Fast, reliable, local experts."
|
||||
buttons={[{ text: "Schedule Repair", href: "#" }]}
|
||||
background={{ variant: "plain" }}
|
||||
/>
|
||||
<FooterBase
|
||||
columns={[]}
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
@@ -8,7 +7,7 @@ import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
|
||||
export default function DetroitPage() {
|
||||
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">
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
@@ -24,6 +23,7 @@ export default function DetroitPage() {
|
||||
logoText="BlueDropFix Detroit"
|
||||
description="Comprehensive water repair solutions in Detroit, MI. Serving Midtown, Grosse Pointe, and Corktown. Immediate dispatch for emergency leaks."
|
||||
buttons={[{ text: "Schedule Repair", href: "#" }]}
|
||||
background={{ variant: "plain" }}
|
||||
/>
|
||||
<FooterBase
|
||||
columns={[]}
|
||||
|
||||
@@ -6,10 +6,11 @@ import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
|
||||
export default function HoustonPage() {
|
||||
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: "Services", id: "/#services" }, { name: "Contact", id: "/#contact" }]}
|
||||
brandName="BlueDropFix"
|
||||
button={{ text: "Call Now", href: "tel:5550199" }}
|
||||
/>
|
||||
<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 Houston, TX</h1>
|
||||
@@ -17,7 +18,7 @@ export default function HoustonPage() {
|
||||
<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="Houston Service" title="Need Help in Houston?" description="Fast emergency response across the Houston metro area." buttons={[{ text: "Call Now", href: "tel:5550199" }]} />
|
||||
<ContactCTA tag="Houston Service" title="Need Help in Houston?" description="Fast emergency response across the Houston metro area." buttons={[{ text: "Call Now", href: "tel:5550199" }]} background={{ variant: "plain" }} useInvertedBackground={false} />
|
||||
<FooterBase columns={[]} logoText="BlueDropFix" />
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
|
||||
@@ -6,10 +6,11 @@ import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
|
||||
export default function NewYorkPage() {
|
||||
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: "Services", id: "/#services" }, { name: "Contact", id: "/#contact" }]}
|
||||
brandName="BlueDropFix"
|
||||
button={{ text: "Call Now", href: "tel:5550199" }}
|
||||
/>
|
||||
<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>
|
||||
@@ -17,7 +18,7 @@ export default function NewYorkPage() {
|
||||
<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" }]} />
|
||||
<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" />
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user