diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index aded4e0..2848e3c 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -5,7 +5,7 @@ import Link from "next/link"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix"; import FooterMedia from "@/components/sections/footer/FooterMedia"; -import { Zap, Droplets, Flame, Pipe, AlertCircle, Wrench } from "lucide-react"; +import { Zap, Droplets, Flame, AlertCircle, Wrench, PipeLock } from "lucide-react"; const navItems = [ { name: "Home", id: "home" }, @@ -17,8 +17,7 @@ const navItems = [ const footerColumns = [ { - title: "Services", - items: [ + title: "Services", items: [ { label: "Emergency Plumbing", href: "/services" }, { label: "Water Heater Repair", href: "/services" }, { label: "Heating & Furnace", href: "/services" }, @@ -26,8 +25,7 @@ const footerColumns = [ ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/" }, { label: "Contact", href: "#contact" }, { label: "FAQ", href: "/" }, @@ -35,8 +33,7 @@ const footerColumns = [ ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Licenses & Certifications", href: "#" }, @@ -63,9 +60,7 @@ export default function ServicesPage() { @@ -77,46 +72,22 @@ export default function ServicesPage() { tag="Services" features={[ { - title: "Emergency Plumbing Repair", - description: "24/7 emergency response for burst pipes, leaks, and urgent problems.", - imageSrc: "http://img.b2bpic.net/free-photo/female-plumber-working-fix-problems-client-s-house_23-2150990727.jpg?_wi=2", - imageAlt: "Emergency repair", - buttonIcon: Zap, + title: "Emergency Plumbing Repair", description: "24/7 emergency response for burst pipes, leaks, and urgent problems.", imageSrc: "http://img.b2bpic.net/free-photo/female-plumber-working-fix-problems-client-s-house_23-2150990727.jpg", imageAlt: "Emergency repair", buttonIcon: Zap, }, { - title: "Water Heater Repair & Installation", - description: "Professional installation and repair of all water heater types and brands.", - imageSrc: "http://img.b2bpic.net/free-vector/waters-supply-plumbing-service-isomertic-banners_1284-17769.jpg?_wi=3", - imageAlt: "Water heater", - buttonIcon: Droplets, + title: "Water Heater Repair & Installation", description: "Professional installation and repair of all water heater types and brands.", imageSrc: "http://img.b2bpic.net/free-vector/waters-supply-plumbing-service-isomertic-banners_1284-17769.jpg", imageAlt: "Water heater", buttonIcon: Droplets, }, { - title: "Furnace & Heating Repair", - description: "Expert heating system repair and maintenance to keep your home warm.", - imageSrc: "http://img.b2bpic.net/free-photo/engineer-assembling-hvac-unit-manometers_482257-92713.jpg?_wi=3", - imageAlt: "Heating system", - buttonIcon: Flame, + title: "Furnace & Heating Repair", description: "Expert heating system repair and maintenance to keep your home warm.", imageSrc: "http://img.b2bpic.net/free-photo/engineer-assembling-hvac-unit-manometers_482257-92713.jpg", imageAlt: "Heating system", buttonIcon: Flame, }, { - title: "Drain & Pipe Issues", - description: "Professional drain cleaning and pipe repair using modern equipment.", - imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721547.jpg?_wi=3", - imageAlt: "Drain service", - buttonIcon: Pipe, + title: "Drain & Pipe Issues", description: "Professional drain cleaning and pipe repair using modern equipment.", imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721547.jpg", imageAlt: "Drain service", buttonIcon: PipeLock, }, { - title: "Gas Line Inspections", - description: "Safety inspections and maintenance of residential gas lines and appliances.", - imageSrc: "http://img.b2bpic.net/free-photo/handsome-young-carpenter-working-with-experienced-man_329181-15627.jpg?_wi=4", - imageAlt: "Gas inspection", - buttonIcon: AlertCircle, + title: "Gas Line Inspections", description: "Safety inspections and maintenance of residential gas lines and appliances.", imageSrc: "http://img.b2bpic.net/free-photo/handsome-young-carpenter-working-with-experienced-man_329181-15627.jpg", imageAlt: "Gas inspection", buttonIcon: AlertCircle, }, { - title: "Plumbing Installation", - description: "New plumbing installations and comprehensive residential plumbing services.", - imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-working-as-plumber_23-2150746297.jpg?_wi=5", - imageAlt: "Installation", - buttonIcon: Wrench, + title: "Plumbing Installation", description: "New plumbing installations and comprehensive residential plumbing services.", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-working-as-plumber_23-2150746297.jpg", imageAlt: "Installation", buttonIcon: Wrench, }, ]} textboxLayout="default" @@ -126,7 +97,7 @@ export default function ServicesPage() {