8 Commits

Author SHA1 Message Date
e67a959879 Update src/app/services/page.tsx 2026-03-21 03:07:06 +00:00
efc7005bb1 Update src/app/page.tsx 2026-03-21 03:07:06 +00:00
de528804a9 Update src/app/services/page.tsx 2026-03-21 03:06:35 +00:00
ebdaaaf10c Update src/app/page.tsx 2026-03-21 03:06:34 +00:00
bf58bcfef8 Update src/app/contact/page.tsx 2026-03-21 03:06:34 +00:00
d1ef90644b Update src/app/about/page.tsx 2026-03-21 03:06:34 +00:00
836caa07e2 Update src/app/page.tsx 2026-03-21 03:04:57 +00:00
36b23e3966 Merge version_1 into main
Merge version_1 into main
2026-03-21 03:02:39 +00:00
4 changed files with 113 additions and 325 deletions

View File

@@ -10,27 +10,25 @@ import { Award, CheckCircle, Zap, Users } from "lucide-react";
export default function AboutPage() {
const navItems = [
{ name: "Home", id: "home" },
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
{ name: "Contact", id: "/contact" },
];
const footerColumns = [
{
title: "Services",
items: [
{ label: "Emergency Plumbing", href: "/" },
{ label: "Leak Repair", href: "/" },
{ label: "Drain Cleaning", href: "/" },
{ label: "Water Heater Service", href: "/" },
{ label: "Pipe Repair", href: "/" },
title: "Services", items: [
{ label: "Emergency Plumbing", href: "/services" },
{ label: "Leak Repair", href: "/services" },
{ label: "Drain Cleaning", href: "/services" },
{ label: "Water Heater Service", href: "/services" },
{ label: "Pipe Repair", href: "/services" },
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Why Choose Us", href: "/about" },
{ label: "Testimonials", href: "/" },
@@ -39,8 +37,7 @@ export default function AboutPage() {
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Phone: (555) 123-4567", href: "tel:+15551234567" },
{ label: "Email: info@plumber.local", href: "mailto:info@plumber.local" },
{ label: "24/7 Emergency", href: "tel:+15551234567" },
@@ -49,8 +46,7 @@ export default function AboutPage() {
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Warranty Info", href: "#" },
@@ -87,24 +83,16 @@ export default function AboutPage() {
metrics={[
{
icon: Award,
label: "Years Experience",
value: "25+",
},
label: "Years Experience", value: "25+"},
{
icon: CheckCircle,
label: "Licensed & Insured",
value: "Certified",
},
label: "Licensed & Insured", value: "Certified"},
{
icon: Zap,
label: "Emergency Response",
value: "24/7",
},
label: "Emergency Response", value: "24/7"},
{
icon: Users,
label: "Satisfied Customers",
value: "5000+",
},
label: "Satisfied Customers", value: "5000+"},
]}
metricsAnimation="slide-up"
useInvertedBackground={false}
@@ -117,32 +105,14 @@ export default function AboutPage() {
description="Trusted by homeowners and businesses throughout the region for professional, reliable plumbing service."
testimonials={[
{
id: "1",
name: "Sarah Johnson",
role: "Homeowner",
company: "Residential Customer",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-family-kitchen-decorated-christmas_93675-133749.jpg?_wi=2",
imageAlt: "happy homeowner smiling at home portrait",
},
id: "1", name: "Sarah Johnson", role: "Homeowner", company: "Residential Customer", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-family-kitchen-decorated-christmas_93675-133749.jpg?_wi=2", imageAlt: "happy homeowner smiling at home portrait"},
{
id: "2",
name: "Michael Chen",
role: "Property Manager",
company: "Commercial Building",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/research-agency-employee-sitting-office-while-using-work-computer-review-startup-project-marketing-strategy-sales-department-team-leader-developing-financial-plan-order-stabilize-budget_482257-38918.jpg?_wi=2",
imageAlt: "portrait business owner at office desk",
},
id: "2", name: "Michael Chen", role: "Property Manager", company: "Commercial Building", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/research-agency-employee-sitting-office-while-using-work-computer-review-startup-project-marketing-strategy-sales-department-team-leader-developing-financial-plan-order-stabilize-budget_482257-38918.jpg?_wi=2", imageAlt: "portrait business owner at office desk"},
{
id: "3",
name: "Emily Rodriguez",
role: "Homeowner",
company: "Residential Customer",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-organizing-live-shop_23-2149947467.jpg?_wi=2",
imageAlt: "young homeowner portrait natural light",
},
id: "3", name: "Emily Rodriguez", role: "Homeowner", company: "Residential Customer", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-organizing-live-shop_23-2149947467.jpg?_wi=2", imageAlt: "young homeowner portrait natural light"},
]}
animationType="slide-up"
textboxLayout="default"
@@ -161,4 +131,4 @@ export default function AboutPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -10,27 +10,25 @@ import { Phone } from "lucide-react";
export default function ContactPage() {
const navItems = [
{ name: "Home", id: "home" },
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
{ name: "Contact", id: "/contact" },
];
const footerColumns = [
{
title: "Services",
items: [
{ label: "Emergency Plumbing", href: "/" },
{ label: "Leak Repair", href: "/" },
{ label: "Drain Cleaning", href: "/" },
{ label: "Water Heater Service", href: "/" },
{ label: "Pipe Repair", href: "/" },
title: "Services", items: [
{ label: "Emergency Plumbing", href: "/services" },
{ label: "Leak Repair", href: "/services" },
{ label: "Drain Cleaning", href: "/services" },
{ label: "Water Heater Service", href: "/services" },
{ label: "Pipe Repair", href: "/services" },
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Why Choose Us", href: "/about" },
{ label: "Testimonials", href: "/" },
@@ -39,8 +37,7 @@ export default function ContactPage() {
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Phone: (555) 123-4567", href: "tel:+15551234567" },
{ label: "Email: info@plumber.local", href: "mailto:info@plumber.local" },
{ label: "24/7 Emergency", href: "tel:+15551234567" },
@@ -49,8 +46,7 @@ export default function ContactPage() {
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Warranty Info", href: "#" },
@@ -86,26 +82,15 @@ export default function ContactPage() {
ctaTitle="Ready to Solve Your Plumbing Problem?"
ctaDescription="Contact us today for fast, professional plumbing service. Call anytime - we're here 24/7."
ctaButton={{
text: "Call (555) 123-4567",
href: "tel:+15551234567",
}}
text: "Call (555) 123-4567", href: "tel:+15551234567"}}
ctaIcon={Phone}
faqs={[
{
id: "1",
title: "Hours of Operation",
content: "Monday - Friday: 8am - 6pm\nSaturday: 9am - 4pm\nSunday & Holidays: Emergency Service Only\n\nEmergency line available 24/7/365",
},
id: "1", title: "Hours of Operation", content: "Monday - Friday: 8am - 6pm\nSaturday: 9am - 4pm\nSunday & Holidays: Emergency Service Only\n\nEmergency line available 24/7/365"},
{
id: "2",
title: "Service Area",
content: "We proudly serve the following areas:\n- Downtown District\n- Suburban Communities\n- Commercial Centers\n- Industrial Parks\n\nCall to confirm service for your location.",
},
id: "2", title: "Service Area", content: "We proudly serve the following areas:\n- Downtown District\n- Suburban Communities\n- Commercial Centers\n- Industrial Parks\n\nCall to confirm service for your location."},
{
id: "3",
title: "Payment Options",
content: "We accept all major credit cards, checks, and digital payment methods. Flexible financing available for larger projects. Ask about our monthly maintenance plans.",
},
id: "3", title: "Payment Options", content: "We accept all major credit cards, checks, and digital payment methods. Flexible financing available for larger projects. Ask about our monthly maintenance plans."},
]}
animationType="slide-up"
useInvertedBackground={false}
@@ -119,20 +104,11 @@ export default function ContactPage() {
sideDescription="Find answers to frequently asked questions about our plumbing services, pricing, and emergency availability."
faqs={[
{
id: "1",
title: "Do you offer emergency services?",
content: "Yes, we offer 24/7 emergency plumbing services. Call (555) 123-4567 anytime for urgent plumbing needs. Emergency service fees apply outside regular business hours.",
},
id: "1", title: "Do you offer emergency services?", content: "Yes, we offer 24/7 emergency plumbing services. Call (555) 123-4567 anytime for urgent plumbing needs. Emergency service fees apply outside regular business hours."},
{
id: "2",
title: "Are you licensed and insured?",
content: "Yes, all our plumbers are fully licensed, bonded, and insured. We maintain comprehensive insurance coverage to protect your home and our work.",
},
id: "2", title: "Are you licensed and insured?", content: "Yes, all our plumbers are fully licensed, bonded, and insured. We maintain comprehensive insurance coverage to protect your home and our work."},
{
id: "3",
title: "How quickly can you respond?",
content: "We aim to respond to emergency calls within 30-45 minutes in most areas. Response times vary by location. Call us to check availability for your area.",
},
id: "3", title: "How quickly can you respond?", content: "We aim to respond to emergency calls within 30-45 minutes in most areas. Response times vary by location. Call us to check availability for your area."},
]}
faqsAnimation="slide-up"
useInvertedBackground={false}
@@ -150,4 +126,4 @@ export default function ContactPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -15,17 +15,16 @@ import { Award, CheckCircle, Zap, Users, Phone } from "lucide-react";
export default function HomePage() {
const navItems = [
{ name: "Home", id: "home" },
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
{ name: "Contact", id: "/contact" },
];
const footerColumns = [
{
title: "Services",
items: [
title: "Services", items: [
{ label: "Emergency Plumbing", href: "/services" },
{ label: "Leak Repair", href: "/services" },
{ label: "Drain Cleaning", href: "/services" },
@@ -34,28 +33,25 @@ export default function HomePage() {
],
},
{
title: "Company",
items: [
{ label: "About Us", href: "/" },
{ label: "Why Choose Us", href: "/" },
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Why Choose Us", href: "/about" },
{ label: "Testimonials", href: "/" },
{ label: "Contact", href: "/" },
{ label: "Request Quote", href: "/" },
{ label: "Contact", href: "/contact" },
{ label: "Request Quote", href: "/contact" },
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Phone: (555) 123-4567", href: "tel:+15551234567" },
{ label: "Email: info@plumber.local", href: "mailto:info@plumber.local" },
{ label: "24/7 Emergency", href: "tel:+15551234567" },
{ label: "Service Areas", href: "/" },
{ label: "Business Hours", href: "/" },
{ label: "Service Areas", href: "/about" },
{ label: "Business Hours", href: "/contact" },
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Warranty Info", href: "#" },
@@ -90,17 +86,15 @@ export default function HomePage() {
<HeroCentered
title="Fast, Reliable Plumbing When You Need It Most"
description="24/7 emergency plumbing services for homeowners and businesses. Licensed, insured, and ready to solve your plumbing problems quickly and professionally."
background="radial-gradient"
background={{ variant: "radial-gradient" }}
avatars={[
{
src: "http://img.b2bpic.net/free-photo/plumber-doing-surprise-gesture_1368-6311.jpg",
alt: "Professional plumbing team ready to serve",
},
src: "http://img.b2bpic.net/free-photo/plumber-doing-surprise-gesture_1368-6311.jpg", alt: "Professional plumbing team ready to serve"},
]}
avatarText="Professional Plumbers on Standby"
buttons={[
{ text: "Call Now: (555) 123-4567", href: "tel:+15551234567" },
{ text: "Request a Quote", href: "/services" },
{ text: "Request a Quote", href: "/contact" },
]}
buttonAnimation="slide-up"
/>
@@ -112,53 +106,17 @@ export default function HomePage() {
description="From emergency repairs to routine maintenance, we handle all your plumbing needs with professional expertise and customer care."
features={[
{
id: "emergency",
title: "Emergency Plumbing",
description: "Available 24/7 for urgent plumbing emergencies. We respond quickly to prevent water damage and restore your system.",
tag: "24/7 Available",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-afro-american-barber-wearing-uniform-holding-clock-looking-camera-doing-ok-sign-isolated-olive-green-background_141793-107862.jpg?_wi=1",
imageAlt: "Emergency plumbing service technician",
},
id: "emergency", title: "Emergency Plumbing", description: "Available 24/7 for urgent plumbing emergencies. We respond quickly to prevent water damage and restore your system.", tag: "24/7 Available", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-afro-american-barber-wearing-uniform-holding-clock-looking-camera-doing-ok-sign-isolated-olive-green-background_141793-107862.jpg?_wi=1", imageAlt: "Emergency plumbing service technician"},
{
id: "leak-repair",
title: "Leak Repair",
description: "Expert detection and repair of water leaks in pipes, fixtures, and walls. We prevent costly water damage.",
tag: "Expert Detection",
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721540.jpg?_wi=1",
imageAlt: "Professional leak repair work",
},
id: "leak-repair", title: "Leak Repair", description: "Expert detection and repair of water leaks in pipes, fixtures, and walls. We prevent costly water damage.", tag: "Expert Detection", imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721540.jpg?_wi=1", imageAlt: "Professional leak repair work"},
{
id: "drain-cleaning",
title: "Drain Cleaning",
description: "Professional drain cleaning and unclogging services for residential and commercial properties.",
tag: "Professional Service",
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-person-washing-fish-with-hose_181624-58490.jpg?_wi=1",
imageAlt: "Drain cleaning equipment and service",
},
id: "drain-cleaning", title: "Drain Cleaning", description: "Professional drain cleaning and unclogging services for residential and commercial properties.", tag: "Professional Service", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-person-washing-fish-with-hose_181624-58490.jpg?_wi=1", imageAlt: "Drain cleaning equipment and service"},
{
id: "water-heater",
title: "Water Heater Services",
description: "Installation, repair, and maintenance of water heaters and tankless systems.",
tag: "Fast Installation",
imageSrc: "http://img.b2bpic.net/free-photo/worker-repairing-water-heater_23-2149334225.jpg",
imageAlt: "Water heater installation service",
},
id: "water-heater", title: "Water Heater Services", description: "Installation, repair, and maintenance of water heaters and tankless systems.", tag: "Fast Installation", imageSrc: "http://img.b2bpic.net/free-photo/worker-repairing-water-heater_23-2149334225.jpg", imageAlt: "Water heater installation service"},
{
id: "pipe-repair",
title: "Pipe Repair & Replacement",
description: "Complete pipe repair and replacement services for all types of plumbing systems.",
tag: "Expert Craftsmanship",
imageSrc: "http://img.b2bpic.net/free-photo/man-looking-detail-sitting-floor_259150-58258.jpg",
imageAlt: "Professional pipe repair and replacement",
},
id: "pipe-repair", title: "Pipe Repair & Replacement", description: "Complete pipe repair and replacement services for all types of plumbing systems.", tag: "Expert Craftsmanship", imageSrc: "http://img.b2bpic.net/free-photo/man-looking-detail-sitting-floor_259150-58258.jpg", imageAlt: "Professional pipe repair and replacement"},
{
id: "sewer-service",
title: "Sewer Line Services",
description: "Sewer line inspection, cleaning, and repair using advanced camera technology.",
tag: "Advanced Technology",
imageSrc: "http://img.b2bpic.net/free-photo/plumber-assembling-pipe_1098-17772.jpg",
imageAlt: "Sewer line inspection and repair service",
},
id: "sewer-service", title: "Sewer Line Services", description: "Sewer line inspection, cleaning, and repair using advanced camera technology.", tag: "Advanced Technology", imageSrc: "http://img.b2bpic.net/free-photo/plumber-assembling-pipe_1098-17772.jpg", imageAlt: "Sewer line inspection and repair service"},
]}
animationType="slide-up"
textboxLayout="default"
@@ -189,53 +147,23 @@ export default function HomePage() {
description="Trusted by homeowners and businesses throughout the region for professional, reliable plumbing service."
testimonials={[
{
id: "1",
name: "Sarah Johnson",
role: "Homeowner",
company: "Residential Customer",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-family-kitchen-decorated-christmas_93675-133749.jpg?_wi=1",
},
id: "1", name: "Sarah Johnson", role: "Homeowner", company: "Residential Customer", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-family-kitchen-decorated-christmas_93675-133749.jpg?_wi=1"},
{
id: "2",
name: "Michael Chen",
role: "Property Manager",
company: "Commercial Building",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/research-agency-employee-sitting-office-while-using-work-computer-review-startup-project-marketing-strategy-sales-department-team-leader-developing-financial-plan-order-stabilize-budget_482257-38918.jpg?_wi=1",
},
id: "2", name: "Michael Chen", role: "Property Manager", company: "Commercial Building", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/research-agency-employee-sitting-office-while-using-work-computer-review-startup-project-marketing-strategy-sales-department-team-leader-developing-financial-plan-order-stabilize-budget_482257-38918.jpg?_wi=1"},
{
id: "3",
name: "Emily Rodriguez",
role: "Homeowner",
company: "Residential Customer",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-organizing-live-shop_23-2149947467.jpg?_wi=1",
},
id: "3", name: "Emily Rodriguez", role: "Homeowner", company: "Residential Customer", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-organizing-live-shop_23-2149947467.jpg?_wi=1"},
{
id: "4",
name: "David Kim",
role: "Business Owner",
company: "Restaurant",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-business-man-with-backpack_23-2149915912.jpg",
},
id: "4", name: "David Kim", role: "Business Owner", company: "Restaurant", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-business-man-with-backpack_23-2149915912.jpg"},
{
id: "5",
name: "Jennifer Martinez",
role: "Homeowner",
company: "Residential Customer",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-blond-woman-home-with-tablet_268835-935.jpg",
},
id: "5", name: "Jennifer Martinez", role: "Homeowner", company: "Residential Customer", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-blond-woman-home-with-tablet_268835-935.jpg"},
{
id: "6",
name: "Robert Thompson",
role: "Facilities Manager",
company: "Office Complex",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/shocked-displeased-businessman-glasses-gasping-looking-upset_1258-26399.jpg",
},
id: "6", name: "Robert Thompson", role: "Facilities Manager", company: "Office Complex", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/shocked-displeased-businessman-glasses-gasping-looking-upset_1258-26399.jpg"},
]}
animationType="slide-up"
textboxLayout="default"
@@ -250,44 +178,9 @@ export default function HomePage() {
title="Trusted By Industry Leaders & Customers"
description="Licensed, insured, and certified with partnerships and certifications from trusted industry organizations."
names={[
"Home Depot Partner",
"Lowe's Preferred",
"Better Business Bureau",
"Google Verified",
"Angi Certified",
"Yelp Recommended",
"Industry Certified",
]}
"Home Depot Partner", "Lowe's Preferred", "Better Business Bureau", "Google Verified", "Angi Certified", "Yelp Recommended", "Industry Certified"]}
logos={[
{
src: "http://img.b2bpic.net/free-photo/arrangement-old-objects-antiques-market_23-2148950899.jpg",
alt: "Home Depot Partnership",
},
{
src: "http://img.b2bpic.net/free-photo/two-people-working-warehouse_329181-12772.jpg",
alt: "Lowe's Preferred Contractor",
},
{
src: "http://img.b2bpic.net/free-vector/iso-certification-stamp-collection_23-2148685866.jpg",
alt: "Better Business Bureau Accredited",
},
{
src: "http://img.b2bpic.net/free-vector/flat-hotel-review-background_23-2148157892.jpg",
alt: "Google Verified Business",
},
{
src: "http://img.b2bpic.net/free-vector/modern-gradient-handyman-solutions-bumper-sticker_742173-9460.jpg",
alt: "Angi Certified Service Professional",
},
{
src: "http://img.b2bpic.net/free-photo/personal-information-form-identity-concept_53876-137622.jpg",
alt: "Yelp Recommended",
},
{
src: "http://img.b2bpic.net/free-vector/flat-design-patented-stamp-collection_23-2149752889.jpg",
alt: "Home Service Certification",
},
]}
"http://img.b2bpic.net/free-photo/arrangement-old-objects-antiques-market_23-2148950899.jpg", "http://img.b2bpic.net/free-photo/two-people-working-warehouse_329181-12772.jpg", "http://img.b2bpic.net/free-vector/iso-certification-stamp-collection_23-2148685866.jpg", "http://img.b2bpic.net/free-vector/flat-hotel-review-background_23-2148157892.jpg", "http://img.b2bpic.net/free-vector/modern-gradient-handyman-solutions-bumper-sticker_742173-9460.jpg", "http://img.b2bpic.net/free-photo/personal-information-form-identity-concept_53876-137622.jpg", "http://img.b2bpic.net/free-vector/flat-design-patented-stamp-collection_23-2149752889.jpg"]}
textboxLayout="default"
useInvertedBackground={false}
speed={40}
@@ -301,35 +194,17 @@ export default function HomePage() {
sideDescription="Find answers to frequently asked questions about our plumbing services, pricing, and emergency availability."
faqs={[
{
id: "1",
title: "Do you offer emergency services?",
content: "Yes, we offer 24/7 emergency plumbing services. Call (555) 123-4567 anytime for urgent plumbing needs. Emergency service fees apply outside regular business hours.",
},
id: "1", title: "Do you offer emergency services?", content: "Yes, we offer 24/7 emergency plumbing services. Call (555) 123-4567 anytime for urgent plumbing needs. Emergency service fees apply outside regular business hours."},
{
id: "2",
title: "Are you licensed and insured?",
content: "Yes, all our plumbers are fully licensed, bonded, and insured. We maintain comprehensive insurance coverage to protect your home and our work.",
},
id: "2", title: "Are you licensed and insured?", content: "Yes, all our plumbers are fully licensed, bonded, and insured. We maintain comprehensive insurance coverage to protect your home and our work."},
{
id: "3",
title: "How quickly can you respond?",
content: "We aim to respond to emergency calls within 30-45 minutes in most areas. Response times vary by location. Call us to check availability for your area.",
},
id: "3", title: "How quickly can you respond?", content: "We aim to respond to emergency calls within 30-45 minutes in most areas. Response times vary by location. Call us to check availability for your area."},
{
id: "4",
title: "Do you provide free estimates?",
content: "Yes, we offer free in-home estimates for most plumbing work. Our technicians will assess your needs and provide transparent pricing.",
},
id: "4", title: "Do you provide free estimates?", content: "Yes, we offer free in-home estimates for most plumbing work. Our technicians will assess your needs and provide transparent pricing."},
{
id: "5",
title: "What areas do you serve?",
content: "We serve the greater metropolitan area including all surrounding neighborhoods and suburbs. Contact us to confirm service availability for your location.",
},
id: "5", title: "What areas do you serve?", content: "We serve the greater metropolitan area including all surrounding neighborhoods and suburbs. Contact us to confirm service availability for your location."},
{
id: "6",
title: "Do you guarantee your work?",
content: "Yes, we stand behind our workmanship with a 1-year warranty on repairs and 5-year warranty on parts. Your satisfaction is guaranteed.",
},
id: "6", title: "Do you guarantee your work?", content: "Yes, we stand behind our workmanship with a 1-year warranty on repairs and 5-year warranty on parts. Your satisfaction is guaranteed."},
]}
faqsAnimation="slide-up"
useInvertedBackground={false}
@@ -347,4 +222,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -11,17 +11,16 @@ import { Phone } from "lucide-react";
export default function ServicesPage() {
const navItems = [
{ name: "Home", id: "home" },
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
{ name: "Contact", id: "/contact" },
];
const footerColumns = [
{
title: "Services",
items: [
title: "Services", items: [
{ label: "Emergency Plumbing", href: "/services" },
{ label: "Leak Repair", href: "/services" },
{ label: "Drain Cleaning", href: "/services" },
@@ -30,28 +29,25 @@ export default function ServicesPage() {
],
},
{
title: "Company",
items: [
{ label: "About Us", href: "/" },
{ label: "Why Choose Us", href: "/" },
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Why Choose Us", href: "/about" },
{ label: "Testimonials", href: "/" },
{ label: "Contact", href: "/" },
{ label: "Request Quote", href: "/" },
{ label: "Contact", href: "/contact" },
{ label: "Request Quote", href: "/contact" },
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Phone: (555) 123-4567", href: "tel:+15551234567" },
{ label: "Email: info@plumber.local", href: "mailto:info@plumber.local" },
{ label: "24/7 Emergency", href: "tel:+15551234567" },
{ label: "Service Areas", href: "/" },
{ label: "Business Hours", href: "/" },
{ label: "Service Areas", href: "/about" },
{ label: "Business Hours", href: "/contact" },
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Warranty Info", href: "#" },
@@ -86,17 +82,15 @@ export default function ServicesPage() {
<HeroCentered
title="Expert Plumbing Services for Every Need"
description="We provide comprehensive plumbing solutions for residential and commercial properties. From emergency repairs to scheduled maintenance, our licensed professionals are ready to help."
background="radial-gradient"
background={{ variant: "radial-gradient" }}
avatars={[
{
src: "http://img.b2bpic.net/free-photo/plumber-doing-surprise-gesture_1368-6311.jpg",
alt: "Professional plumbing services team",
},
src: "http://img.b2bpic.net/free-photo/plumber-doing-surprise-gesture_1368-6311.jpg", alt: "Professional plumbing services team"},
]}
avatarText="Comprehensive Plumbing Solutions"
buttons={[
{ text: "Request Service", href: "tel:+15551234567" },
{ text: "Get Free Quote", href: "/" },
{ text: "Get Free Quote", href: "/contact" },
]}
buttonAnimation="slide-up"
/>
@@ -108,29 +102,11 @@ export default function ServicesPage() {
description="Each service is performed by certified plumbers using advanced techniques and quality materials. We stand behind all our work with comprehensive warranties."
features={[
{
id: "emergency",
title: "24/7 Emergency Plumbing",
description: "Immediate response to burst pipes, major leaks, and other urgent plumbing emergencies. We're available anytime, day or night, to prevent water damage and restore your system.",
tag: "Immediate Response",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-afro-american-barber-wearing-uniform-holding-clock-looking-camera-doing-ok-sign-isolated-olive-green-background_141793-107862.jpg?_wi=2",
imageAlt: "24/7 emergency plumbing service",
},
id: "emergency", title: "24/7 Emergency Plumbing", description: "Immediate response to burst pipes, major leaks, and other urgent plumbing emergencies. We're available anytime, day or night, to prevent water damage and restore your system.", tag: "Immediate Response", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-afro-american-barber-wearing-uniform-holding-clock-looking-camera-doing-ok-sign-isolated-olive-green-background_141793-107862.jpg?_wi=2", imageAlt: "24/7 emergency plumbing service"},
{
id: "leak-detection",
title: "Advanced Leak Detection",
description: "Using state-of-the-art equipment, we locate hidden leaks before they cause damage. Our detection technology identifies problems in walls, under slabs, and hard-to-reach areas.",
tag: "Advanced Technology",
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721540.jpg?_wi=2",
imageAlt: "Professional leak detection service",
},
id: "leak-detection", title: "Advanced Leak Detection", description: "Using state-of-the-art equipment, we locate hidden leaks before they cause damage. Our detection technology identifies problems in walls, under slabs, and hard-to-reach areas.", tag: "Advanced Technology", imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721540.jpg?_wi=2", imageAlt: "Professional leak detection service"},
{
id: "drain-service",
title: "Professional Drain Services",
description: "From routine drain cleaning to major blockage removal, we use hydro-jetting and mechanical cleaning methods. Regular maintenance prevents backups and extends system life.",
tag: "Preventive Care",
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-person-washing-fish-with-hose_181624-58490.jpg?_wi=2",
imageAlt: "Professional drain cleaning",
},
id: "drain-service", title: "Professional Drain Services", description: "From routine drain cleaning to major blockage removal, we use hydro-jetting and mechanical cleaning methods. Regular maintenance prevents backups and extends system life.", tag: "Preventive Care", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-person-washing-fish-with-hose_181624-58490.jpg?_wi=2", imageAlt: "Professional drain cleaning"},
]}
animationType="slide-up"
textboxLayout="default"
@@ -149,20 +125,11 @@ export default function ServicesPage() {
ctaIcon={Phone}
faqs={[
{
id: "1",
title: "Service Guarantees",
content: "1-Year Warranty on Labor: All repairs backed by our quality guarantee.\n5-Year Warranty on Parts: Extended protection on water heaters and major equipment.\nSatisfaction Guarantee: If you're not satisfied, we'll make it right.",
},
id: "1", title: "Service Guarantees", content: "1-Year Warranty on Labor: All repairs backed by our quality guarantee.\n5-Year Warranty on Parts: Extended protection on water heaters and major equipment.\nSatisfaction Guarantee: If you're not satisfied, we'll make it right."},
{
id: "2",
title: "Pricing & Estimates",
content: "Free estimates on all projects.\nNo hidden fees or surprise charges.\nTransparent pricing with detailed written quotes.\nFlexible payment options and financing available.",
},
id: "2", title: "Pricing & Estimates", content: "Free estimates on all projects.\nNo hidden fees or surprise charges.\nTransparent pricing with detailed written quotes.\nFlexible payment options and financing available."},
{
id: "3",
title: "How to Schedule",
content: "Call us at (555) 123-4567 to book online or by phone.\nEmergency? Call anytime - we respond quickly.\nSchedule routine maintenance appointments at your convenience.\nMultiple time slots available throughout the week.",
},
id: "3", title: "How to Schedule", content: "Call us at (555) 123-4567 to book online or by phone.\nEmergency? Call anytime - we respond quickly.\nSchedule routine maintenance appointments at your convenience.\nMultiple time slots available throughout the week."},
]}
animationType="slide-up"
useInvertedBackground={false}
@@ -179,4 +146,4 @@ export default function ServicesPage() {
</div>
</ThemeProvider>
);
}
}