diff --git a/src/app/page.tsx b/src/app/page.tsx index 93fcbbd..56247de 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,6 +1,6 @@ "use client"; -import { AlertCircle, CheckCircle, Droplets, Phone, Pipe, Star, Wrench } from "lucide-react"; +import { AlertCircle, CheckCircle, Droplets, Phone, PipeIcon, Star, Wrench } from "lucide-react"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import HeroBillboard from "@/components/sections/hero/HeroBillboard"; import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive"; @@ -64,45 +64,55 @@ export default function LandingPage() { title: "Water Heater Repair & Replacement", description: "Expert water heater repair and installation services for reliable hot water year-round.", icon: Droplets, mediaItems: [ { - imageSrc: "http://img.b2bpic.net/free-photo/electrical-technician-looking-focused-while-working-switchboard-with-fuses_169016-23486.jpg?_wi=1", imageAlt: "Water heater repair service"}, + imageSrc: "http://img.b2bpic.net/free-photo/electrical-technician-looking-focused-while-working-switchboard-with-fuses_169016-23486.jpg", imageAlt: "Water heater repair service" + }, { - imageSrc: "http://img.b2bpic.net/free-photo/electrical-technician-looking-focused-while-working-switchboard-with-fuses_169016-23486.jpg?_wi=2", imageAlt: "Water heater replacement"}, + imageSrc: "http://img.b2bpic.net/free-photo/electrical-technician-looking-focused-while-working-switchboard-with-fuses_169016-23486.jpg", imageAlt: "Water heater replacement" + }, ], }, { title: "Leak Detection & Repair", description: "Fast and accurate leak detection using advanced technology to prevent water damage.", icon: AlertCircle, mediaItems: [ { - imageSrc: "http://img.b2bpic.net/free-photo/man-fixing-kitchen-sink_53876-24827.jpg?_wi=1", imageAlt: "Leak detection service"}, + imageSrc: "http://img.b2bpic.net/free-photo/man-fixing-kitchen-sink_53876-24827.jpg", imageAlt: "Leak detection service" + }, { - imageSrc: "http://img.b2bpic.net/free-photo/man-fixing-kitchen-sink_53876-24827.jpg?_wi=2", imageAlt: "Professional leak repair"}, + imageSrc: "http://img.b2bpic.net/free-photo/man-fixing-kitchen-sink_53876-24827.jpg", imageAlt: "Professional leak repair" + }, ], }, { title: "Residential Plumbing Repairs", description: "Quick and reliable fixes for all types of residential plumbing issues.", icon: Wrench, mediaItems: [ { - imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990737.jpg?_wi=1", imageAlt: "Residential plumbing repair"}, + imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990737.jpg", imageAlt: "Residential plumbing repair" + }, { - imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990737.jpg?_wi=2", imageAlt: "Plumbing installation work"}, + imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990737.jpg", imageAlt: "Plumbing installation work" + }, ], }, { - title: "Drain & Pipe Issues", description: "Professional drain cleaning and pipe repair to keep your plumbing flowing smoothly.", icon: Pipe, + title: "Drain & Pipe Issues", description: "Professional drain cleaning and pipe repair to keep your plumbing flowing smoothly.", icon: PipeIcon, mediaItems: [ { - imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990737.jpg?_wi=3", imageAlt: "Drain cleaning service"}, + imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990737.jpg", imageAlt: "Drain cleaning service" + }, { - imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990737.jpg?_wi=4", imageAlt: "Pipe repair work"}, + imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990737.jpg", imageAlt: "Pipe repair work" + }, ], }, { title: "Plumbing Inspections", description: "Thorough inspections to identify potential issues before they become expensive problems.", icon: CheckCircle, mediaItems: [ { - imageSrc: "http://img.b2bpic.net/free-photo/coworkers-servicing-hvac-system_482257-91024.jpg?_wi=1", imageAlt: "Plumbing inspection service"}, + imageSrc: "http://img.b2bpic.net/free-photo/coworkers-servicing-hvac-system_482257-91024.jpg", imageAlt: "Plumbing inspection service" + }, { - imageSrc: "http://img.b2bpic.net/free-photo/coworkers-servicing-hvac-system_482257-91024.jpg?_wi=2", imageAlt: "Professional system inspection"}, + imageSrc: "http://img.b2bpic.net/free-photo/coworkers-servicing-hvac-system_482257-91024.jpg", imageAlt: "Professional system inspection" + }, ], }, ]} @@ -116,7 +126,8 @@ export default function LandingPage() {