Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-05-12 15:37:08 +00:00
10 changed files with 289 additions and 288 deletions

22
src/app/atlanta/page.tsx Normal file
View 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>
);
}

View 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
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 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>
);
}

View 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>
);
}

View 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>
);
}

View 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
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 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>
);
}

View 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
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>
);
}

View File

@@ -31,48 +31,23 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Services",
id: "services",
},
{
name: "Pricing",
id: "pricing",
},
{
name: "FAQ",
id: "faq",
},
{
name: "Contact",
id: "contact",
},
{ name: "Services", id: "services" },
{ name: "Pricing", id: "pricing" },
{ name: "FAQ", id: "faq" },
{ name: "Locations", id: "locations" },
{ name: "Contact", id: "contact" },
]}
brandName="BlueDropFix"
button={{
text: "Call Now",
href: "tel:5550199",
}}
button={{ text: "Call Now", href: "tel:5550199" }}
/>
</div>
<div id="hero" data-section="hero">
<HeroLogoBillboard
background={{
variant: "gradient-bars",
}}
background={{ variant: "gradient-bars" }}
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."
buttons={[
{
text: "Schedule Repair",
href: "#contact",
},
{
text: "Emergency Call",
href: "tel:5550199",
},
]}
buttons={[{ 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"
imageAlt="Expert water leak repair technician at work"
mediaAnimation="slide-up"
@@ -84,9 +59,7 @@ export default function LandingPage() {
useInvertedBackground={true}
title="Your Trusted Local Experts"
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.",
"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.",
]}
"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."]}
/>
</div>
@@ -96,298 +69,83 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
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: "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",
},
{ 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: "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"
description="We specialize in identifying and fixing hidden leaks before they lead to expensive structural damage."
/>
</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">
<PricingCardNine
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={true}
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",
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",
},
{ 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: "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" },
{ 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" },
]}
title="Transparent Pricing"
description="No hidden fees. We provide upfront estimates and ensure complete satisfaction for every project."
/>
</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">
<FaqBase
textboxLayout="split"
useInvertedBackground={true}
faqs={[
{
id: "f1",
title: "Do you offer 24/7 service?",
content: "Yes, we are available 24/7 to handle emergency water leaks.",
},
{
id: "f2",
title: "How quickly can you arrive?",
content: "Our response time is typically under 2 hours depending on your city location.",
},
{
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.",
},
{ id: "f1", title: "Why Choose BlueDropFix?", content: "BlueDropFix offers licensed, bonded, and insured experts for reliable residential and commercial water leak solutions." },
{ id: "f2", title: "Does BlueDropFix fix burst pipes?", content: "Yes, we specialize in emergency repair for burst pipes and flooding incidents 24/7." },
{ id: "f3", title: "Is BlueDropFix cost-effective?", content: "Yes, we provide transparent, upfront diagnostic pricing with no hidden fees for all our repair projects." },
{ 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: "f7", title: "Does BlueDropFix offer warranties?", content: "We stand by our work and offer certified warranties for our pipe restoration and plumbing services." },
{ 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." },
{ 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." }
]}
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"
/>
</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">
<ContactCTA
useInvertedBackground={true}
background={{
variant: "radial-gradient",
}}
background={{ variant: "radial-gradient" }}
tag="Get Help Now"
title="Need Immediate Repair?"
description="Call BlueDropFix today or book your site visit online."
buttons={[
{
text: "Call Now: 555-0199",
href: "tel:5550199",
},
]}
buttons={[{ text: "Call Now: 555-0199", href: "tel:5550199" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Services",
items: [
{
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: "#",
},
],
},
{ title: "Services", items: [{ label: "Leak Detection", href: "#services" }, { label: "Pipe Repair", href: "#services" }] },
{ title: "Company", items: [{ label: "About Us", href: "#about" }, { label: "Locations", href: "#locations" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }] }
]}
logoText="BlueDropFix"
/>
@@ -395,4 +153,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}