Update src/app/services/page.tsx
This commit is contained in:
@@ -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: "#" },
|
||||
@@ -89,14 +85,12 @@ export default function ServicesPage() {
|
||||
background="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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user