Update src/app/services/page.tsx

This commit is contained in:
2026-03-10 03:44:49 +00:00
parent 4fbedae39f
commit c9aacbd779

View File

@@ -7,7 +7,7 @@ import HeroSplit from "@/components/sections/hero/HeroSplit";
import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow";
import ContactFaq from "@/components/sections/contact/ContactFaq";
import FooterCard from "@/components/sections/footer/FooterCard";
import { AlertCircle, Droplet, Thermometer, Pipe, Settings, Phone, Facebook } from "lucide-react";
import { AlertCircle, Droplet, Thermometer, Settings, Phone, Facebook } from "lucide-react";
export default function ServicesPage() {
const navItems = [
@@ -25,7 +25,7 @@ export default function ServicesPage() {
borderRadius="rounded"
contentWidth="smallMedium"
sizing="mediumLargeSizeMediumTitles"
background="noiseDiagonalGradient"
background="circleGradient"
cardStyle="subtle-shadow"
primaryButtonStyle="flat"
secondaryButtonStyle="glass"
@@ -36,9 +36,7 @@ export default function ServicesPage() {
brandName="SwiftFlow Plumbing"
navItems={navItems}
button={{
text: "Call Now",
href: "tel:+64-123-456-789",
}}
text: "Call Now", href: "tel:+64-123-456-789"}}
/>
</div>
@@ -49,20 +47,16 @@ export default function ServicesPage() {
tag="Our Services"
tagIcon={Settings}
tagAnimation="slide-up"
background={{ variant: "noiseDiagonalGradient" }}
background={{ variant: "glowing-orb" }}
imageSrc="http://img.b2bpic.net/free-photo/man-installs-heating-system-house-checks-pipes-with-wrench_169016-53082.jpg"
imageAlt="pipe leak detection repair"
imagePosition="left"
mediaAnimation="slide-up"
buttons={[
{
text: "Request Quote",
href: "/contact",
},
text: "Request Quote", href: "/contact"},
{
text: "Emergency Service",
href: "tel:+64-123-456-789",
},
text: "Emergency Service", href: "tel:+64-123-456-789"},
]}
buttonAnimation="slide-up"
/>
@@ -73,29 +67,21 @@ export default function ServicesPage() {
title="Detailed Service Offerings"
description="SwiftFlow Plumbing specializes in a wide range of residential and commercial plumbing services to keep your water systems running smoothly and efficiently."
tag="Complete Solutions"
tagIcon={Pipe}
tagIcon={AlertCircle}
tagAnimation="slide-up"
features={[
{
icon: AlertCircle,
title: "Emergency Plumbing Response",
description: "24/7 availability for burst pipes, severe leaks, blockages, and other critical plumbing emergencies. Fast arrival times with comprehensive solutions.",
},
title: "Emergency Plumbing Response", description: "24/7 availability for burst pipes, severe leaks, blockages, and other critical plumbing emergencies. Fast arrival times with comprehensive solutions."},
{
icon: Droplet,
title: "Leak Detection & Repair",
description: "Advanced leak detection technology to identify hidden leaks quickly. Professional repair to prevent water damage and reduce water waste.",
},
title: "Leak Detection & Repair", description: "Advanced leak detection technology to identify hidden leaks quickly. Professional repair to prevent water damage and reduce water waste."},
{
icon: Thermometer,
title: "Hot Water System Services",
description: "Installation, repair, and maintenance of hot water systems including traditional tanks and modern tankless water heaters.",
},
title: "Hot Water System Services", description: "Installation, repair, and maintenance of hot water systems including traditional tanks and modern tankless water heaters."},
{
icon: Pipe,
title: "Drain Cleaning & Maintenance",
description: "Professional drain cleaning using camera inspection and high-pressure techniques. Preventative maintenance to avoid future blockages.",
},
icon: AlertCircle,
title: "Drain Cleaning & Maintenance", description: "Professional drain cleaning using camera inspection and high-pressure techniques. Preventative maintenance to avoid future blockages."},
]}
animationType="slide-up"
textboxLayout="default"
@@ -108,26 +94,15 @@ export default function ServicesPage() {
ctaTitle="Need Plumbing Help?"
ctaDescription="Reach out to our team for service inquiries, emergency assistance, or to schedule your appointment. We're ready to help."
ctaButton={{
text: "Contact SwiftFlow",
href: "tel:+64-7-123-4567",
}}
text: "Contact SwiftFlow", href: "tel:+64-7-123-4567"}}
ctaIcon={Phone}
faqs={[
{
id: "1",
title: "What areas do you service?",
content: "We service Hamilton and all surrounding suburbs including Chartwell, Dinsdale, Matangi, Cambridge, and beyond. Contact us to confirm service availability for your location.",
},
id: "1", title: "What areas do you service?", content: "We service Hamilton and all surrounding suburbs including Chartwell, Dinsdale, Matangi, Cambridge, and beyond. Contact us to confirm service availability for your location."},
{
id: "2",
title: "How much do plumbing services cost?",
content: "Pricing depends on the service type and complexity. We provide free quotes for most services and transparent pricing before work begins.",
},
id: "2", title: "How much do plumbing services cost?", content: "Pricing depends on the service type and complexity. We provide free quotes for most services and transparent pricing before work begins."},
{
id: "3",
title: "Can you handle commercial plumbing?",
content: "Yes, SwiftFlow Plumbing has extensive experience with commercial properties, including restaurants, offices, and light industrial facilities.",
},
id: "3", title: "Can you handle commercial plumbing?", content: "Yes, SwiftFlow Plumbing has extensive experience with commercial properties, including restaurants, offices, and light industrial facilities."},
]}
animationType="slide-up"
useInvertedBackground={true}
@@ -141,14 +116,10 @@ export default function ServicesPage() {
socialLinks={[
{
icon: Facebook,
href: "https://facebook.com/swiftflowplumbing",
ariaLabel: "Facebook",
},
href: "https://facebook.com/swiftflowplumbing", ariaLabel: "Facebook"},
{
icon: Phone,
href: "tel:+64-7-123-4567",
ariaLabel: "Call us",
},
href: "tel:+64-7-123-4567", ariaLabel: "Call us"},
]}
/>
</div>