Merge version_4 into main #6
@@ -8,7 +8,7 @@ const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Pro Renton Plumbers | 24/7 Emergency Plumbing Services", description:
|
||||
"Trusted local plumbers in Renton providing fast, reliable repairs and installations. Licensed, insured, 24/7 emergency service available. Call (253) 235-2228."};
|
||||
"Trusted local plumbers in Renton providing fast, reliable repairs and installations. Licensed, insured, 24/7 emergency service available."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
|
||||
192
src/app/page.tsx
192
src/app/page.tsx
@@ -7,6 +7,7 @@ import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll"
|
||||
import FeatureBento from "@/components/sections/feature/FeatureBento";
|
||||
import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen";
|
||||
import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
|
||||
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
||||
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
||||
import ContactFaq from "@/components/sections/contact/ContactFaq";
|
||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||
@@ -29,6 +30,7 @@ import {
|
||||
Clock,
|
||||
Award,
|
||||
Users,
|
||||
TrendingUp,
|
||||
Hammer,
|
||||
Gauge,
|
||||
} from "lucide-react";
|
||||
@@ -36,14 +38,21 @@ import {
|
||||
export default function HomePage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "#services" },
|
||||
{ name: "Reviews", id: "#testimonials" },
|
||||
{ name: "Contact", id: "#contact" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
const navLinks = navItems.map((item) => {
|
||||
if (item.id === "/") {
|
||||
return { name: item.name, id: item.id };
|
||||
}
|
||||
return { name: item.name, id: item.id };
|
||||
});
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="compact"
|
||||
@@ -57,138 +66,130 @@ export default function HomePage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Pro Renton Plumbers"
|
||||
navItems={navItems}
|
||||
button={{ text: "(253) 235-2228", href: "tel:+12532352228" }}
|
||||
navItems={navLinks}
|
||||
button={{ text: "Call Now", href: "tel:+14255551234" }}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardScroll
|
||||
title="24/7 Emergency Plumbing in Renton"
|
||||
description="Licensed, insured plumbers ready to fix your plumbing issues fast. Same-day service, honest pricing, and 24-hour emergency response. Serving Renton and surrounding areas."
|
||||
tag="Expert Local Plumbers"
|
||||
title="Trusted Local Plumbers in Renton"
|
||||
description="Fast, reliable plumbing repairs and installations for homes across Renton and nearby communities. Licensed, insured, and ready to serve you. 5-star rated by hundreds of satisfied homeowners."
|
||||
tag="Expert Local Service"
|
||||
tagIcon={Wrench}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "radial-gradient" }}
|
||||
background={{ variant: "plain" }}
|
||||
buttons={[
|
||||
{ text: "Call Now: (253) 235-2228", href: "tel:+12532352228" },
|
||||
{ text: "Call Now (425) 555-1234", href: "tel:+14255551234" },
|
||||
{ text: "Get Free Estimate", href: "#contact" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="https://images.unsplash.com/photo-1585771724684-38269d6639fd?w=800&q=80"
|
||||
imageAlt="Professional plumber at work in Renton home"
|
||||
ariaLabel="Hero section - 24/7 Emergency Plumbing in Renton"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-attractive-hispanic-handyman-writing-work-estimate-before-fixing-kitchen-sink_662251-2690.jpg"
|
||||
imageAlt="Professional plumber at work in home"
|
||||
ariaLabel="Hero section - Trusted Local Plumbers in Renton"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="trust-badges" data-section="trust-badges">
|
||||
<FeatureBento
|
||||
title="Why Renton Homeowners Trust Pro Renton Plumbers"
|
||||
description="We're licensed, insured, available 24/7 for emergencies, and committed to honest pricing. Trusted by hundreds of satisfied customers with 5-star reviews."
|
||||
tag="Our Guarantee"
|
||||
title="Why Renton Homeowners Trust Us"
|
||||
description="Built on a foundation of expertise, reliability, and customer commitment. Proven track record with 5-star Google reviews."
|
||||
tag="Our Promise"
|
||||
tagIcon={Shield}
|
||||
tagAnimation="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "Licensed & Insured", description: "Washington State licensed with $2M liability insurance protecting your home and investment", bentoComponent: "reveal-icon", icon: CheckCircle,
|
||||
title: "Licensed & Insured", description: "Fully certified professionals with comprehensive coverage and protection for your home", bentoComponent: "reveal-icon", icon: CheckCircle,
|
||||
},
|
||||
{
|
||||
title: "24/7 Emergency Service", description: "Available anytime day or night for burst pipes, leaks, and urgent plumbing emergencies", bentoComponent: "reveal-icon", icon: Clock,
|
||||
title: "Same-Day Service", description: "Emergency repairs available 24/7 when you need us most. Average response time under 1 hour", bentoComponent: "reveal-icon", icon: Zap,
|
||||
},
|
||||
{
|
||||
title: "Honest Upfront Pricing", description: "No hidden fees. Free estimates with transparent pricing before any work begins", bentoComponent: "reveal-icon", icon: DollarSign,
|
||||
title: "Upfront Pricing", description: "No hidden fees—transparent estimates before any work begins. Price match guarantee", bentoComponent: "reveal-icon", icon: DollarSign,
|
||||
},
|
||||
{
|
||||
title: "Fast Response Time", description: "Average 30-60 minute response for emergencies. Same-day service for regular calls", bentoComponent: "reveal-icon", icon: Zap,
|
||||
title: "5-Star Rated", description: "Trusted by hundreds of satisfied Renton homeowners with verified Google reviews", bentoComponent: "reveal-icon", icon: Star,
|
||||
},
|
||||
{
|
||||
title: "5-Star Rated", description: "Hundreds of verified Google reviews from satisfied Renton homeowners", bentoComponent: "reveal-icon", icon: Star,
|
||||
title: "Local Experts", description: "Deep knowledge of Renton homes and unique plumbing needs. Community members serving neighbors", bentoComponent: "reveal-icon", icon: MapPin,
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
ariaLabel="Trust badges and service guarantees"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureBento
|
||||
title="Complete Plumbing Services"
|
||||
description="From emergency repairs to scheduled installations, we handle all your plumbing needs with expertise and professionalism."
|
||||
tag="Full-Service Solutions"
|
||||
tagIcon={Wrench}
|
||||
tagAnimation="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "Water Heater Repair", description: "Emergency water heater repairs and installations. Gas, electric, and tankless options available.", bentoComponent: "reveal-icon", icon: Droplet,
|
||||
},
|
||||
{
|
||||
title: "Drain Cleaning", description: "Fast and effective drain cleaning. Hydro-jetting and snake cleaning for clogs and backups.", bentoComponent: "reveal-icon", icon: Waves,
|
||||
},
|
||||
{
|
||||
title: "Leak Detection", description: "Advanced technology to find hidden leaks. Acoustic and thermal imaging for quick detection.", bentoComponent: "reveal-icon", icon: AlertTriangle,
|
||||
},
|
||||
{
|
||||
title: "Pipe Repair & Replacement", description: "Durable pipe solutions for copper, PVC, and PEX piping. Preventive maintenance available.", bentoComponent: "reveal-icon", icon: Hammer,
|
||||
},
|
||||
{
|
||||
title: "Toilet Repair & Replacement", description: "Quick repairs for running toilets and leaks. Full replacement with modern low-flow options.", bentoComponent: "reveal-icon", icon: Gauge,
|
||||
},
|
||||
{
|
||||
title: "Shower Installation", description: "Custom shower installations and upgrades. Professional finish guaranteed.", bentoComponent: "reveal-icon", icon: Smartphone,
|
||||
},
|
||||
{
|
||||
title: "Emergency Repairs", description: "24/7 emergency response for burst pipes, severe leaks, and critical plumbing issues.", bentoComponent: "reveal-icon", icon: AlertCircle,
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
ariaLabel="Plumbing services offered"
|
||||
ariaLabel="Trust badges and service highlights"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardThirteen
|
||||
title="What Our Customers Say"
|
||||
description="Real 5-star experiences from satisfied Renton homeowners. Read verified Google reviews from our community."
|
||||
description="Real 5-star experiences from satisfied Renton homeowners. See verified Google reviews from our community."
|
||||
tag="Customer Reviews"
|
||||
tagIcon={Quote}
|
||||
tagAnimation="slide-up"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Sarah Johnson", handle: "★★★★★ Google Review", testimonial:
|
||||
"Pro Renton Plumbers fixed our water heater in no time. Professional, courteous, and gave us an upfront estimate. Highly recommend!", rating: 5,
|
||||
imageSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=150&q=80", imageAlt: "Sarah Johnson customer review photo"},
|
||||
"Pro Renton Plumbers fixed our water heater issue in no time. The technician was professional, courteous, and gave us an upfront estimate. Highly recommend!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/casual-smile-street-style-background-spring_1139-777.jpg?_wi=1", imageAlt: "woman portrait professional headshot smiling"},
|
||||
{
|
||||
id: "2", name: "Michael Chen", handle: "★★★★★ Google Review", testimonial:
|
||||
"Emergency plumbing on a Sunday night—they answered immediately and arrived within 45 minutes. Best service experience ever.", rating: 5,
|
||||
imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=150&q=80", imageAlt: "Michael Chen customer review photo"},
|
||||
"Emergency plumbing on a Sunday night—they answered immediately and arrived within 45 minutes. Best service experience I've had. Worth every penny.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1", imageAlt: "man portrait professional headshot confident"},
|
||||
{
|
||||
id: "3", name: "Emily Rodriguez", handle: "★★★★★ Google Review", testimonial:
|
||||
"The drain cleaning service was incredibly thorough. No mess, professional cleanup, and the price was exactly what they quoted.", rating: 5,
|
||||
imageSrc: "https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=150&q=80", imageAlt: "Emily Rodriguez customer review photo"},
|
||||
"The drain cleaning service was incredibly thorough. No mess, professional cleanup, and the price was exactly what they quoted. True professionals.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/casual-smile-street-style-background-spring_1139-777.jpg?_wi=2", imageAlt: "woman portrait professional happy headshot"},
|
||||
{
|
||||
id: "4", name: "David Kim", handle: "★★★★★ Google Review", testimonial:
|
||||
"We had a major leak detection emergency. They found it quickly and fixed it the same day. Saved us from serious water damage.", rating: 5,
|
||||
imageSrc: "https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=150&q=80", imageAlt: "David Kim customer review photo"},
|
||||
"We had a major leak detection emergency. They found it quickly with their advanced equipment and fixed it the same day. Saved us from serious water damage.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2", imageAlt: "man portrait professional headshot smile"},
|
||||
{
|
||||
id: "5", name: "Jennifer Walsh", handle: "★★★★★ Google Review", testimonial:
|
||||
"Shower installation was seamless. The team was clean, professional, and finished ahead of schedule. Will definitely call them again.", rating: 5,
|
||||
imageSrc: "https://images.unsplash.com/photo-1517256673193-36c24ce56538?w=150&q=80", imageAlt: "Jennifer Walsh customer review photo"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg", imageAlt: "woman portrait professional headshot friendly"},
|
||||
{
|
||||
id: "6", name: "Robert Thompson", handle: "★★★★★ Google Review", testimonial:
|
||||
"As someone who tries to DIY everything, I knew this needed professionals. Best decision. They explained every step and didn't rush.", rating: 5,
|
||||
imageSrc: "https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?w=150&q=80", imageAlt: "Robert Thompson customer review photo"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=3", imageAlt: "man portrait professional headshot approachable"},
|
||||
]}
|
||||
showRating={true}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
carouselMode="buttons"
|
||||
ariaLabel="Customer testimonials and 5-star reviews"
|
||||
ariaLabel="Customer testimonials and reviews"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardOne
|
||||
title="Our Impact by the Numbers"
|
||||
description="Real results that showcase our commitment to excellence and customer satisfaction across Renton and surrounding communities."
|
||||
tag="Performance Metrics"
|
||||
tagIcon={TrendingUp}
|
||||
tagAnimation="slide-up"
|
||||
metrics={[
|
||||
{
|
||||
id: "1", value: "500+", title: "Happy Customers", description: "Satisfied homeowners across Renton and nearby areas", icon: Users,
|
||||
},
|
||||
{
|
||||
id: "2", value: "25+", title: "Years Experience", description: "Combined expertise and proven track record", icon: Award,
|
||||
},
|
||||
{
|
||||
id: "3", value: "1-2hrs", title: "Avg Response Time", description: "Quick arrival for all your plumbing emergencies", icon: Clock,
|
||||
},
|
||||
{
|
||||
id: "4", value: "100%", title: "Satisfaction Guarantee", description: "Every job backed by our commitment to excellence", icon: CheckCircle,
|
||||
},
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
ariaLabel="Key performance metrics and impact"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -200,11 +201,11 @@ export default function HomePage() {
|
||||
title="Why Choose Pro Renton Plumbers"
|
||||
description="We're not just another plumbing company. We're your neighbors, committed to providing honest, reliable service backed by years of experience and hundreds of satisfied customers throughout Renton. Every job is backed by our satisfaction guarantee."
|
||||
metrics={[
|
||||
{ value: "25+", title: "Years Combined Experience" },
|
||||
{ value: "25+", title: "Years of Combined Experience" },
|
||||
{ value: "500+", title: "Happy Customers Served" },
|
||||
{ value: "100%", title: "Satisfaction Guarantee" },
|
||||
]}
|
||||
imageSrc="https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?w=500&q=80"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-happy-auto-repairman-looking-camera-while-his-customers-are-standing-background_637285-7790.jpg"
|
||||
imageAlt="Professional plumbing team"
|
||||
useInvertedBackground={false}
|
||||
mediaAnimation="slide-up"
|
||||
@@ -215,7 +216,7 @@ export default function HomePage() {
|
||||
<div id="service-areas" data-section="service-areas">
|
||||
<SocialProofOne
|
||||
title="Service Areas"
|
||||
description="We proudly serve Renton and surrounding communities with reliable 24/7 plumbing solutions."
|
||||
description="We proudly serve Renton and the surrounding communities with reliable plumbing solutions. Same-day service available."
|
||||
tag="Local Coverage"
|
||||
tagIcon={MapPin}
|
||||
tagAnimation="slide-up"
|
||||
@@ -229,26 +230,25 @@ export default function HomePage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<div id="final-cta" data-section="final-cta">
|
||||
<ContactFaq
|
||||
ctaTitle="Ready for Fast, Reliable Plumbing Service?"
|
||||
ctaDescription="Call Pro Renton Plumbers now for 24/7 emergency service or to schedule your appointment. Get a free estimate with no hidden fees."
|
||||
ctaButton={{
|
||||
text: "Call (253) 235-2228", href: "tel:+12532352228"}}
|
||||
ctaTitle="Need a Plumber Today?"
|
||||
ctaDescription="Don't let plumbing issues wait. Call now for fast, reliable service or request a free estimate. Our AI receptionist is standing by to help you schedule immediately, 24/7."
|
||||
ctaButton={{ text: "Call Now (425) 555-1234", href: "tel:+14255551234" }}
|
||||
ctaIcon={Phone}
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "Do you offer 24/7 emergency service?", content:
|
||||
"Yes! We provide 24/7 emergency plumbing services. Call us anytime for urgent issues like burst pipes, severe leaks, or backups. Our team responds quickly—typically within 30-60 minutes for emergencies."},
|
||||
id: "1", title: "Do you offer emergency services?", content:
|
||||
"Yes! We provide 24/7 emergency plumbing services. Call us anytime for urgent issues like burst pipes, severe leaks, or backups. Our AI receptionist can book your emergency appointment instantly."},
|
||||
{
|
||||
id: "2", title: "What's your service area?", content:
|
||||
"We serve Renton and surrounding communities including Kent, Bellevue, Newcastle, Tukwila, Seattle area, Sammamish, Issaquah, Kirkland, and Redmond. Same-day service available for most areas."},
|
||||
id: "2", title: "How quickly can you arrive?", content:
|
||||
"We aim to arrive within 1-2 hours of your call for regular appointments. Emergency appointments are prioritized, and we typically arrive within 30-60 minutes."},
|
||||
{
|
||||
id: "3", title: "Do you provide free estimates?", content:
|
||||
"Absolutely. We provide transparent, upfront estimates with no hidden fees before any work begins. You'll know exactly what to expect. Estimates are typically provided within 24 hours."},
|
||||
{
|
||||
id: "4", title: "Are you licensed and insured?", content:
|
||||
"Yes, all our plumbers are fully licensed by the State of Washington and we carry comprehensive general liability insurance ($2M coverage) to protect you and your home during service."},
|
||||
"Yes, all our plumbers are fully licensed by the State of Washington and we carry comprehensive general liability insurance ($2M coverage) to protect you and your home."},
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
@@ -261,28 +261,28 @@ export default function HomePage() {
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Water Heater Repair", href: "#services" },
|
||||
{ label: "Drain Cleaning", href: "#services" },
|
||||
{ label: "Leak Detection", href: "#services" },
|
||||
{ label: "Emergency Plumbing", href: "#services" },
|
||||
{ label: "Water Heater Repair", href: "/services" },
|
||||
{ label: "Drain Cleaning", href: "/services" },
|
||||
{ label: "Toilet Repair", href: "/services" },
|
||||
{ label: "Emergency Plumbing", href: "/services" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "#why-choose-us" },
|
||||
{ label: "Contact Us", href: "#contact" },
|
||||
{ label: "Service Areas", href: "#service-areas" },
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Contact Us", href: "/contact" },
|
||||
{ label: "Service Areas", href: "/" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support", items: [
|
||||
{ label: "Get Free Estimate", href: "#contact" },
|
||||
{ label: "24/7 Emergency", href: "tel:+12532352228" },
|
||||
{ label: "Customer Reviews", href: "#testimonials" },
|
||||
{ label: "Privacy Policy", href: "/" },
|
||||
{ label: "Terms of Service", href: "/" },
|
||||
{ label: "Get Free Estimate", href: "/contact" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2025 Pro Renton Plumbers | Licensed & Insured | 24/7 Service: (253) 235-2228 | 17815 108th Ave SE, Renton, WA 98055"
|
||||
copyrightText="© 2025 Pro Renton Plumbers. All rights reserved. Call 24/7: (425) 555-1234"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
@@ -4,6 +4,7 @@ import Link from "next/link";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import FeatureBento from "@/components/sections/feature/FeatureBento";
|
||||
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
||||
import ContactFaq from "@/components/sections/contact/ContactFaq";
|
||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||
import {
|
||||
@@ -17,20 +18,23 @@ import {
|
||||
Zap,
|
||||
Hammer,
|
||||
Shield,
|
||||
Gauge,
|
||||
TrendingUp,
|
||||
Users,
|
||||
Award,
|
||||
CheckCircle,
|
||||
} from "lucide-react";
|
||||
|
||||
export default function ServicesPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Reviews", id: "/" },
|
||||
{ name: "Contact", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="compact"
|
||||
@@ -45,7 +49,7 @@ export default function ServicesPage() {
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Pro Renton Plumbers"
|
||||
navItems={navItems}
|
||||
button={{ text: "(253) 235-2228", href: "tel:+12532352228" }}
|
||||
button={{ text: "Call Now", href: "tel:+14255551234" }}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
@@ -53,42 +57,34 @@ export default function ServicesPage() {
|
||||
<div id="services" data-section="services">
|
||||
<FeatureBento
|
||||
title="Our Comprehensive Plumbing Services"
|
||||
description="From emergency repairs to scheduled installations, we handle all your plumbing needs with expertise and professionalism. Available 24/7 for emergencies."
|
||||
description="From emergency repairs to scheduled installations, we handle all your plumbing needs with expertise and professionalism. Same-day service available."
|
||||
tag="Full-Service Plumbing"
|
||||
tagIcon={Wrench}
|
||||
tagAnimation="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "Water Heater Installation & Repair", description:
|
||||
"Expert installation of energy-efficient water heaters. Emergency repairs for gas and electric units. Tankless and traditional options available.", bentoComponent: "reveal-icon", icon: Droplet,
|
||||
title: "Water Heater Installation & Repair", description: "Expert installation of energy-efficient water heaters. Emergency repairs for gas and electric units. Tankless and traditional options available.", bentoComponent: "reveal-icon", icon: Droplet,
|
||||
},
|
||||
{
|
||||
title: "Drain Cleaning & Line Services", description:
|
||||
"Fast and effective drain cleaning and clearing services. Hydro-jetting and snake cleaning. Main line repairs and replacements.", bentoComponent: "reveal-icon", icon: Waves,
|
||||
title: "Drain Cleaning & Line Services", description: "Fast and effective drain cleaning and clearing services. Hydro-jetting and snake cleaning. Main line repairs and replacements.", bentoComponent: "reveal-icon", icon: Waves,
|
||||
},
|
||||
{
|
||||
title: "Toilet Repair & Replacement", description:
|
||||
"Quick repairs for running toilets, leaks, and clogs. Full toilet replacement with modern low-flow options available.", bentoComponent: "reveal-icon", icon: Gauge,
|
||||
title: "Toilet Repair & Replacement", description: "Quick repairs for running toilets, leaks, and clogs. Full toilet replacement with modern low-flow options available.", bentoComponent: "reveal-icon", icon: AlertCircle,
|
||||
},
|
||||
{
|
||||
title: "Shower & Bath Installation", description:
|
||||
"Custom shower installations and upgrades. Bathtub repairs and refinishing. Faucet installations and repairs.", bentoComponent: "reveal-icon", icon: Smartphone,
|
||||
title: "Shower & Bath Installation", description: "Custom shower installations and upgrades. Bathtub repairs and refinishing. Faucet installations and repairs.", bentoComponent: "reveal-icon", icon: Smartphone,
|
||||
},
|
||||
{
|
||||
title: "Pipe Repair & Replacement", description:
|
||||
"Durable pipe solutions for old and new homes. Copper, PVC, and PEX piping. Corrosion detection and preventive maintenance.", bentoComponent: "reveal-icon", icon: Wrench,
|
||||
title: "Pipe Repair & Replacement", description: "Durable pipe solutions for old and new homes. Copper, PVC, and PEX piping. Corrosion detection and preventive maintenance.", bentoComponent: "reveal-icon", icon: Wrench,
|
||||
},
|
||||
{
|
||||
title: "Leak Detection & Repair", description:
|
||||
"Advanced detection technology to find hidden leaks. Acoustic and thermal imaging. Water damage prevention and restoration.", bentoComponent: "reveal-icon", icon: AlertTriangle,
|
||||
title: "Leak Detection & Repair", description: "Advanced detection technology to find hidden leaks. Acoustic and thermal imaging. Water damage prevention and restoration.", bentoComponent: "reveal-icon", icon: AlertTriangle,
|
||||
},
|
||||
{
|
||||
title: "Emergency Plumbing", description:
|
||||
"24/7 emergency response for urgent plumbing issues. Burst pipes, severe leaks, backups, and no-water situations handled immediately.", bentoComponent: "reveal-icon", icon: Zap,
|
||||
title: "Emergency Plumbing", description: "24/7 emergency response for urgent plumbing issues. Burst pipes, severe leaks, backups, and no-water situations handled immediately.", bentoComponent: "reveal-icon", icon: Zap,
|
||||
},
|
||||
{
|
||||
title: "Preventive Maintenance", description:
|
||||
"Regular inspections and maintenance to prevent costly repairs. Seasonal plumbing checks. Water pressure testing and adjustments.", bentoComponent: "reveal-icon", icon: Shield,
|
||||
title: "Preventive Maintenance", description: "Regular inspections and maintenance to prevent costly repairs. Seasonal plumbing checks. Water pressure testing and adjustments.", bentoComponent: "reveal-icon", icon: Shield,
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
@@ -98,12 +94,40 @@ export default function ServicesPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="service-metrics" data-section="service-metrics">
|
||||
<MetricCardOne
|
||||
title="Our Service Excellence"
|
||||
description="Numbers that reflect our dedication to quality plumbing services and customer satisfaction."
|
||||
tag="Service Quality"
|
||||
tagIcon={TrendingUp}
|
||||
tagAnimation="slide-up"
|
||||
metrics={[
|
||||
{
|
||||
id: "1", value: "24/7", title: "Emergency Availability", description: "Round-the-clock emergency plumbing response", icon: Zap,
|
||||
},
|
||||
{
|
||||
id: "2", value: "1-2hrs", title: "Average Response Time", description: "Quick arrival for urgent plumbing needs", icon: Phone,
|
||||
},
|
||||
{
|
||||
id: "3", value: "8", title: "Core Services", description: "Comprehensive plumbing solutions available", icon: Wrench,
|
||||
},
|
||||
{
|
||||
id: "4", value: "100%", title: "Satisfaction Rate", description: "Backed by our guarantee on every job", icon: CheckCircle,
|
||||
},
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
ariaLabel="Service quality metrics"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services-cta" data-section="services-cta">
|
||||
<ContactFaq
|
||||
ctaTitle="Ready to Get Started?"
|
||||
ctaDescription="Contact us today to schedule your plumbing service or request a free estimate. Our team is available 24/7 for emergency service."
|
||||
ctaButton={{
|
||||
text: "Call (253) 235-2228", href: "tel:+12532352228"}}
|
||||
ctaDescription="Contact us today to schedule your plumbing service or request a free estimate. Our AI receptionist is available 24/7 to book your appointment instantly."
|
||||
ctaButton={{ text: "Schedule Service or Call (425) 555-1234", href: "tel:+14255551234" }}
|
||||
ctaIcon={Phone}
|
||||
faqs={[
|
||||
{
|
||||
@@ -138,8 +162,8 @@ export default function ServicesPage() {
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/" },
|
||||
{ label: "Contact Us", href: "/" },
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Contact Us", href: "/contact" },
|
||||
{ label: "Service Areas", href: "/" },
|
||||
],
|
||||
},
|
||||
@@ -147,11 +171,11 @@ export default function ServicesPage() {
|
||||
title: "Support", items: [
|
||||
{ label: "Privacy Policy", href: "/" },
|
||||
{ label: "Terms of Service", href: "/" },
|
||||
{ label: "Get Free Estimate", href: "/" },
|
||||
{ label: "Get Free Estimate", href: "/contact" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2025 Pro Renton Plumbers. All rights reserved. Call 24/7: (253) 235-2228"
|
||||
copyrightText="© 2025 Pro Renton Plumbers. All rights reserved. Call 24/7: (425) 555-1234"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
Reference in New Issue
Block a user