Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
22
src/app/atlanta/page.tsx
Normal file
22
src/app/atlanta/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 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"}]} />
|
||||||
|
</div>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
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>
|
||||||
|
);
|
||||||
|
}
|
||||||
24
src/app/chicago/page.tsx
Normal file
24
src/app/chicago/page.tsx
Normal 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 ChicagoPage() {
|
||||||
|
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 Chicago, IL</h1>
|
||||||
|
<p className="text-lg mb-8">Serving Chicago neighborhoods including Lincoln Park, Wicker Park, Logan Square, and Lakeview. 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="Chicago Service" title="Need Help in Chicago?" description="Fast emergency response across the Chicago metro area." buttons={[{ text: "Call Now", href: "tel:5550199" }]} />
|
||||||
|
<FooterBase columns={[]} logoText="BlueDropFix" />
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
35
src/app/cleveland-oh/page.tsx
Normal file
35
src/app/cleveland-oh/page.tsx
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
|
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
||||||
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
|
|
||||||
|
export default function ClevelandPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarLayoutFloatingInline
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Cleveland", id: "/cleveland-oh" },
|
||||||
|
{ name: "Denver", id: "/denver-co" },
|
||||||
|
{ name: "Detroit", id: "/detroit-mi" }
|
||||||
|
]}
|
||||||
|
brandName="BlueDropFix"
|
||||||
|
button={{ text: "Call Now", href: "tel:5550199" }}
|
||||||
|
/>
|
||||||
|
<HeroLogoBillboard
|
||||||
|
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: "#" }]}
|
||||||
|
/>
|
||||||
|
<FooterBase
|
||||||
|
columns={[]}
|
||||||
|
logoText="BlueDropFix"
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
35
src/app/denver-co/page.tsx
Normal file
35
src/app/denver-co/page.tsx
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
|
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
||||||
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
|
|
||||||
|
export default function DenverPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarLayoutFloatingInline
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Cleveland", id: "/cleveland-oh" },
|
||||||
|
{ name: "Denver", id: "/denver-co" },
|
||||||
|
{ name: "Detroit", id: "/detroit-mi" }
|
||||||
|
]}
|
||||||
|
brandName="BlueDropFix"
|
||||||
|
button={{ text: "Call Now", href: "tel:5550199" }}
|
||||||
|
/>
|
||||||
|
<HeroLogoBillboard
|
||||||
|
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: "#" }]}
|
||||||
|
/>
|
||||||
|
<FooterBase
|
||||||
|
columns={[]}
|
||||||
|
logoText="BlueDropFix"
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
35
src/app/detroit-mi/page.tsx
Normal file
35
src/app/detroit-mi/page.tsx
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
|
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
||||||
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
|
|
||||||
|
export default function DetroitPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarLayoutFloatingInline
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Cleveland", id: "/cleveland-oh" },
|
||||||
|
{ name: "Denver", id: "/denver-co" },
|
||||||
|
{ name: "Detroit", id: "/detroit-mi" }
|
||||||
|
]}
|
||||||
|
brandName="BlueDropFix"
|
||||||
|
button={{ text: "Call Now", href: "tel:5550199" }}
|
||||||
|
/>
|
||||||
|
<HeroLogoBillboard
|
||||||
|
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: "#" }]}
|
||||||
|
/>
|
||||||
|
<FooterBase
|
||||||
|
columns={[]}
|
||||||
|
logoText="BlueDropFix"
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
24
src/app/houston/page.tsx
Normal file
24
src/app/houston/page.tsx
Normal 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 HoustonPage() {
|
||||||
|
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 Houston, TX</h1>
|
||||||
|
<p className="text-lg mb-8">Serving Houston neighborhoods including The Heights, Montrose, River Oaks, and Memorial. 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="Houston Service" title="Need Help in Houston?" description="Fast emergency response across the Houston metro area." buttons={[{ text: "Call Now", href: "tel:5550199" }]} />
|
||||||
|
<FooterBase columns={[]} logoText="BlueDropFix" />
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
22
src/app/los-angeles/page.tsx
Normal file
22
src/app/los-angeles/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 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"}]} />
|
||||||
|
</div>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
24
src/app/new-york/page.tsx
Normal file
24
src/app/new-york/page.tsx
Normal 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>
|
||||||
|
);
|
||||||
|
}
|
||||||
334
src/app/page.tsx
334
src/app/page.tsx
@@ -31,48 +31,23 @@ export default function LandingPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{ name: "Services", id: "services" },
|
||||||
name: "Services",
|
{ name: "Pricing", id: "pricing" },
|
||||||
id: "services",
|
{ name: "FAQ", id: "faq" },
|
||||||
},
|
{ name: "Locations", id: "locations" },
|
||||||
{
|
{ name: "Contact", id: "contact" },
|
||||||
name: "Pricing",
|
|
||||||
id: "pricing",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "FAQ",
|
|
||||||
id: "faq",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Contact",
|
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="BlueDropFix"
|
brandName="BlueDropFix"
|
||||||
button={{
|
button={{ text: "Call Now", href: "tel:5550199" }}
|
||||||
text: "Call Now",
|
|
||||||
href: "tel:5550199",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroLogoBillboard
|
<HeroLogoBillboard
|
||||||
background={{
|
background={{ variant: "gradient-bars" }}
|
||||||
variant: "gradient-bars",
|
|
||||||
}}
|
|
||||||
logoText="BlueDropFix Water Repairs"
|
logoText="BlueDropFix Water Repairs"
|
||||||
description="Don't let a leak drown your day. Expert, emergency water repair services across the city. Fast, reliable, and guaranteed."
|
description="Don't let a leak drown your day. Expert, emergency water repair services across the city. Fast, reliable, and guaranteed."
|
||||||
buttons={[
|
buttons={[{ text: "Schedule Repair", href: "#contact" }, { text: "Emergency Call", href: "tel:5550199" }]}
|
||||||
{
|
|
||||||
text: "Schedule Repair",
|
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
text: "Emergency Call",
|
|
||||||
href: "tel:5550199",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721546.jpg?_wi=1"
|
imageSrc="http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721546.jpg?_wi=1"
|
||||||
imageAlt="Expert water leak repair technician at work"
|
imageAlt="Expert water leak repair technician at work"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
@@ -84,9 +59,7 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
title="Your Trusted Local Experts"
|
title="Your Trusted Local Experts"
|
||||||
description={[
|
description={[
|
||||||
"At BlueDropFix, we pride ourselves on delivering rapid, high-quality water leak detection and repair services for homes and businesses. Our team is fully licensed, insured, and equipped with the latest diagnostic technology.",
|
"At BlueDropFix, we pride ourselves on delivering rapid, high-quality water leak detection and repair services for homes and businesses. Our team is fully licensed, insured, and equipped with the latest diagnostic technology.", "Serving major metropolitan hubs, we understand that water damage waits for no one. That's why we offer 24/7 emergency response to protect your property investment."]}
|
||||||
"Serving major metropolitan hubs, we understand that water damage waits for no one. That's why we offer 24/7 emergency response to protect your property investment.",
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -96,298 +69,83 @@ export default function LandingPage() {
|
|||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{ id: "s1", title: "Leak Detection", description: "Cutting-edge sensors and acoustic diagnostics to find hidden leaks behind walls and floors.", tag: "Precision", imageSrc: "http://img.b2bpic.net/free-photo/man-drying-glass-with-kitchen-towel-by-black-faucet-drying-dishes_169016-69554.jpg?_wi=1" },
|
||||||
id: "s1",
|
{ id: "s2", title: "Emergency Repair", description: "Rapid response for burst pipes, flooding, and major leaks affecting your day-to-day operations.", tag: "24/7", imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-working-as-plumber_23-2150746308.jpg" },
|
||||||
title: "Leak Detection",
|
{ id: "s3", title: "Drain & Sewer", description: "Advanced hydro-jetting and clearing services to prevent sewage backflow and basement floods.", tag: "Flow", imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721568.jpg" },
|
||||||
description: "Cutting-edge sensors and acoustic diagnostics to find hidden leaks behind walls and floors.",
|
|
||||||
tag: "Precision",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/man-drying-glass-with-kitchen-towel-by-black-faucet-drying-dishes_169016-69554.jpg?_wi=1",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "s2",
|
|
||||||
title: "Emergency Repair",
|
|
||||||
description: "Rapid response for burst pipes, flooding, and major leaks affecting your day-to-day operations.",
|
|
||||||
tag: "24/7",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-working-as-plumber_23-2150746308.jpg",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "s3",
|
|
||||||
title: "Drain & Sewer",
|
|
||||||
description: "Advanced hydro-jetting and clearing services to prevent sewage backflow and basement floods.",
|
|
||||||
tag: "Flow",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721568.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Comprehensive Repair Services"
|
title="Comprehensive Repair Services"
|
||||||
description="We specialize in identifying and fixing hidden leaks before they lead to expensive structural damage."
|
description="We specialize in identifying and fixing hidden leaks before they lead to expensive structural damage."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="locations" data-section="locations">
|
||||||
|
<div className="py-20 bg-gray-50">
|
||||||
|
<h2 className="text-center text-4xl mb-12 font-bold">Our Service Locations</h2>
|
||||||
|
<div className="grid grid-cols-1 md:grid-cols-3 gap-6 container mx-auto px-4">
|
||||||
|
{["Houston", "Chicago", "NYC", "LA", "Atlanta", "Baltimore", "Cleveland", "Denver", "Detroit"].map((city) => (
|
||||||
|
<div key={city} className="p-4 bg-white shadow rounded">
|
||||||
|
<h3 className="font-semibold mb-2">{city} Office</h3>
|
||||||
|
<iframe title={`Map of ${city}`} src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3445.456!2d-95.3698!3d29.7604!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x0!2zMjnCsDQ1JzM3LjQiTiA5NcKwMjInMTEuMyJX!5e0!3m2!1sen!2sus!4v1600000000000!5m2!1sen!2sus" width="100%" height="200" style={{border:0}} allowFullScreen loading="lazy"></iframe>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="pricing" data-section="pricing">
|
<div id="pricing" data-section="pricing">
|
||||||
<PricingCardNine
|
<PricingCardNine
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
plans={[
|
plans={[
|
||||||
{
|
{ id: "p1", title: "Standard Diagnostic", price: "$150", period: "fixed", features: ["Full system check", "Moisture inspection", "Expert report"], button: { text: "Book Now" }, imageSrc: "http://img.b2bpic.net/free-photo/mature-woman-looking-something-pretended-be-held-blue-t-shirt-looking-glad_176474-32713.jpg" },
|
||||||
id: "p1",
|
{ id: "p2", title: "Emergency Service", price: "$350", period: "base", features: ["Rapid dispatch", "Immediate leak stop", "Damage assessment"], button: { text: "Call Now" }, imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721546.jpg?_wi=2" },
|
||||||
title: "Standard Diagnostic",
|
{ id: "p3", title: "Advanced Repair", price: "Custom", period: "quote", features: ["Full pipe restoration", "Wall dry-out", "Certified warranty"], button: { text: "Get Quote" }, imageSrc: "http://img.b2bpic.net/free-photo/man-drying-glass-with-kitchen-towel-by-black-faucet-drying-dishes_169016-69554.jpg?_wi=2" },
|
||||||
price: "$150",
|
|
||||||
period: "fixed",
|
|
||||||
features: [
|
|
||||||
"Full system check",
|
|
||||||
"Moisture inspection",
|
|
||||||
"Expert report",
|
|
||||||
],
|
|
||||||
button: {
|
|
||||||
text: "Book Now",
|
|
||||||
},
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/mature-woman-looking-something-pretended-be-held-blue-t-shirt-looking-glad_176474-32713.jpg",
|
|
||||||
imageAlt: "plumbing team uniform van",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "p2",
|
|
||||||
title: "Emergency Service",
|
|
||||||
price: "$350",
|
|
||||||
period: "base",
|
|
||||||
features: [
|
|
||||||
"Rapid dispatch",
|
|
||||||
"Immediate leak stop",
|
|
||||||
"Damage assessment",
|
|
||||||
],
|
|
||||||
button: {
|
|
||||||
text: "Call Now",
|
|
||||||
},
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721546.jpg?_wi=2",
|
|
||||||
imageAlt: "plumbing team uniform van",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "p3",
|
|
||||||
title: "Advanced Repair",
|
|
||||||
price: "Custom",
|
|
||||||
period: "quote",
|
|
||||||
features: [
|
|
||||||
"Full pipe restoration",
|
|
||||||
"Wall dry-out",
|
|
||||||
"Certified warranty",
|
|
||||||
],
|
|
||||||
button: {
|
|
||||||
text: "Get Quote",
|
|
||||||
},
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/man-drying-glass-with-kitchen-towel-by-black-faucet-drying-dishes_169016-69554.jpg?_wi=2",
|
|
||||||
imageAlt: "plumbing team uniform van",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Transparent Pricing"
|
title="Transparent Pricing"
|
||||||
description="No hidden fees. We provide upfront estimates and ensure complete satisfaction for every project."
|
description="No hidden fees. We provide upfront estimates and ensure complete satisfaction for every project."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
|
||||||
<TestimonialCardFifteen
|
|
||||||
useInvertedBackground={false}
|
|
||||||
testimonial="BlueDropFix saved my basement from total destruction. Fast, professional, and very honest about the pricing."
|
|
||||||
rating={5}
|
|
||||||
author="Sarah Miller"
|
|
||||||
avatars={[
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/couple-changing-bulb-home_23-2147766978.jpg",
|
|
||||||
alt: "Customer",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/two-happy-businessmen-shaking-hands-after-successful-agreement-office-while-their-female-colleagues-are-applauding-them-focus-is-young-businessman_637285-251.jpg",
|
|
||||||
alt: "Customer",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/young-woman-with-long-blonde-hair-shorts-handsome-joyful-guy-bed-smiling-with-tablet-modern-apartment-lovely-couple-having-fun-true-emotions_197531-1600.jpg",
|
|
||||||
alt: "Customer",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/senior-woman-doing-exercises-home_23-2149260240.jpg",
|
|
||||||
alt: "Customer",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/low-angle-view-senior-man-day-dreaming-while-drinking-coffee-looking-through-window_637285-10274.jpg",
|
|
||||||
alt: "Customer",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
ratingAnimation="slide-up"
|
|
||||||
avatarsAnimation="slide-up"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="faq" data-section="faq">
|
<div id="faq" data-section="faq">
|
||||||
<FaqBase
|
<FaqBase
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{ id: "f1", title: "Why Choose BlueDropFix?", content: "BlueDropFix offers licensed, bonded, and insured experts for reliable residential and commercial water leak solutions." },
|
||||||
id: "f1",
|
{ id: "f2", title: "Does BlueDropFix fix burst pipes?", content: "Yes, we specialize in emergency repair for burst pipes and flooding incidents 24/7." },
|
||||||
title: "Do you offer 24/7 service?",
|
{ id: "f3", title: "Is BlueDropFix cost-effective?", content: "Yes, we provide transparent, upfront diagnostic pricing with no hidden fees for all our repair projects." },
|
||||||
content: "Yes, we are available 24/7 to handle emergency water leaks.",
|
{ id: "f4", title: "Does BlueDropFix provide insurance documentation?", content: "We assist by providing thorough documentation for your property insurance claims following our repair work." },
|
||||||
},
|
{ id: "f5", title: "What makes BlueDropFix detection methods superior?", content: "We use advanced ultrasonic and thermal diagnostic tools to detect leaks without invasive wall destruction." },
|
||||||
{
|
{ id: "f6", title: "Is BlueDropFix available on weekends?", content: "Yes, our emergency repair services are available around the clock, 365 days a year." },
|
||||||
id: "f2",
|
{ id: "f7", title: "Does BlueDropFix offer warranties?", content: "We stand by our work and offer certified warranties for our pipe restoration and plumbing services." },
|
||||||
title: "How quickly can you arrive?",
|
{ id: "f8", title: "How soon can BlueDropFix arrive?", content: "Our rapid-dispatch system allows our teams to arrive at your site within approximately 2 hours." },
|
||||||
content: "Our response time is typically under 2 hours depending on your city location.",
|
{ id: "f9", title: "Does BlueDropFix handle industrial plumbing?", content: "Yes, our expertise spans residential homes, corporate offices, and heavy industrial facilities." },
|
||||||
},
|
{ id: "f10", title: "Where are BlueDropFix locations?", content: "We operate across major hubs including Houston, Chicago, NYC, LA, Atlanta, Baltimore, Cleveland, Denver, and Detroit." }
|
||||||
{
|
|
||||||
id: "f3",
|
|
||||||
title: "Are your plumbers insured?",
|
|
||||||
content: "Yes, every technician is fully bonded, licensed, and insured.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "f4",
|
|
||||||
title: "Do you provide free estimates?",
|
|
||||||
content: "We offer detailed diagnostics and upfront estimates before starting any repair work.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "f5",
|
|
||||||
title: "Do you service my neighborhood?",
|
|
||||||
content: "We serve all major districts; please call us to verify coverage for your specific address.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "f6",
|
|
||||||
title: "Is my water damage covered?",
|
|
||||||
content: "While we are repair experts, we help provide the documentation you need for insurance claims.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "f7",
|
|
||||||
title: "What tools do you use?",
|
|
||||||
content: "We use thermal imaging and ultrasonic leak detection to find issues without invasive destruction.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "f8",
|
|
||||||
title: "Is the diagnostic fee refundable?",
|
|
||||||
content: "The diagnostic fee is often waived if you proceed with our repair service.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "f9",
|
|
||||||
title: "How can I prepare for a pipe burst?",
|
|
||||||
content: "Always know the location of your main water shut-off valve.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "f10",
|
|
||||||
title: "Do you work with businesses?",
|
|
||||||
content: "Yes, we handle residential, commercial, and industrial plumbing repairs.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Frequently Asked Questions"
|
title="Frequently Asked Questions"
|
||||||
description="Common answers about our repair processes, scheduling, and service areas."
|
description="Expert answers regarding BlueDropFix water repair services and emergency help."
|
||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="blog" data-section="blog">
|
|
||||||
<BlogCardThree
|
|
||||||
animationType="slide-up"
|
|
||||||
textboxLayout="split"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
title="Water Damage Prevention Tips"
|
|
||||||
description="Stay informed about protecting your property from water-related hazards."
|
|
||||||
blogs={[
|
|
||||||
{
|
|
||||||
id: "b1",
|
|
||||||
category: "Safety",
|
|
||||||
title: "Winterizing Your Pipes",
|
|
||||||
excerpt: "Keep your pipes from freezing during the cold months.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/wrench-tools_23-2147773408.jpg",
|
|
||||||
authorName: "BlueDrop Team",
|
|
||||||
authorAvatar: "http://img.b2bpic.net/free-photo/smiling-young-pretty-caucasian-woman-sitting-armchair-designed-living-room-looking-showing-thumb-up-doing-money-gesture_141793-58035.jpg",
|
|
||||||
date: "Jan 2025",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "b2",
|
|
||||||
category: "Tips",
|
|
||||||
title: "Recognizing Early Leaks",
|
|
||||||
excerpt: "Small signs of leaks that you should never ignore.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/profile-man-touching-socket-wall-with-screwdriver_259150-58245.jpg",
|
|
||||||
authorName: "BlueDrop Team",
|
|
||||||
authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-happy-people-with-balloons_23-2149305113.jpg",
|
|
||||||
date: "Jan 2025",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "b3",
|
|
||||||
category: "Guide",
|
|
||||||
title: "Maintaining Your Sump Pump",
|
|
||||||
excerpt: "Ensure your basement stays dry all season long.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-working-as-plumber_23-2150746391.jpg",
|
|
||||||
authorName: "BlueDrop Team",
|
|
||||||
authorAvatar: "http://img.b2bpic.net/free-photo/front-view-woman-celebrating-birthday-together_23-2150598991.jpg",
|
|
||||||
date: "Jan 2025",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCTA
|
<ContactCTA
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
background={{
|
background={{ variant: "radial-gradient" }}
|
||||||
variant: "radial-gradient",
|
|
||||||
}}
|
|
||||||
tag="Get Help Now"
|
tag="Get Help Now"
|
||||||
title="Need Immediate Repair?"
|
title="Need Immediate Repair?"
|
||||||
description="Call BlueDropFix today or book your site visit online."
|
description="Call BlueDropFix today or book your site visit online."
|
||||||
buttons={[
|
buttons={[{ text: "Call Now: 555-0199", href: "tel:5550199" }]}
|
||||||
{
|
|
||||||
text: "Call Now: 555-0199",
|
|
||||||
href: "tel:5550199",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBase
|
<FooterBase
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{ title: "Services", items: [{ label: "Leak Detection", href: "#services" }, { label: "Pipe Repair", href: "#services" }] },
|
||||||
title: "Services",
|
{ title: "Company", items: [{ label: "About Us", href: "#about" }, { label: "Locations", href: "#locations" }] },
|
||||||
items: [
|
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }] }
|
||||||
{
|
|
||||||
label: "Leak Detection",
|
|
||||||
href: "#services",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Pipe Repair",
|
|
||||||
href: "#services",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Drain Cleaning",
|
|
||||||
href: "#services",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Company",
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "About Us",
|
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Contact",
|
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Pricing",
|
|
||||||
href: "#pricing",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Legal",
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Privacy Policy",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Terms of Service",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
logoText="BlueDropFix"
|
logoText="BlueDropFix"
|
||||||
/>
|
/>
|
||||||
@@ -395,4 +153,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user