2 Commits

Author SHA1 Message Date
15dfc0c18a Update src/app/page.tsx 2026-05-11 00:22:10 +00:00
65c24aa99b Merge version_3 into main
Merge version_3 into main
2026-05-11 00:20:14 +00:00

View File

@@ -10,7 +10,7 @@ import TestimonialCardThirteen from "@/components/sections/testimonial/Testimoni
import FaqSplitText from "@/components/sections/faq/FaqSplitText";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import { Phone, MapPin, Clock } from "lucide-react";
import { Phone } from "lucide-react";
export default function SuncoastPlumbingPage() {
return (
@@ -66,8 +66,8 @@ export default function SuncoastPlumbingPage() {
{ value: "24/7", title: "Available Always" },
{ value: "10k+", title: "Successful Jobs" },
]}
imageSrc="https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?q=80&w=1000"
imageAlt="Professional plumbing team"
imageSrc="https://images.unsplash.com/photo-1581244277943-fe4a90747d95?q=80&w=1000"
imageAlt="Professional plumber holding a pipe wrench"
mediaAnimation="slide-up"
metricsAnimation="slide-up"
useInvertedBackground={false}
@@ -79,9 +79,9 @@ export default function SuncoastPlumbingPage() {
title="Specialized Plumbing Solutions"
description="Professional care for your residential and commercial needs."
features={[
{ title: "Drain Repair", description: "Fast, high-efficiency repair for slow or clogged drains, highly rated by local clients.", imageSrc: "https://images.unsplash.com/photo-1607478900766-efe1320140f0?q=80&w=600" },
{ title: "Sink Plumbing", description: "Expert sink installation and repair services, ensuring a seamless finish.", imageSrc: "https://images.unsplash.com/photo-1556073434-2e90c42245b7?q=80&w=600" },
{ title: "Water Heaters", description: "Professional repair, maintenance, and installation for all heater types.", imageSrc: "https://images.unsplash.com/photo-1595085022207-67c74f56f437?q=80&w=600" },
{ title: "Drain Repair", description: "Fast, high-efficiency repair for slow or clogged drains, highly rated by local clients.", imageSrc: "https://images.unsplash.com/photo-1607478900766-efe1320140f0?q=80&w=600", imageAlt: "Drain repair service" },
{ title: "Sink Plumbing", description: "Expert sink installation and repair services, ensuring a seamless finish.", imageSrc: "https://images.unsplash.com/photo-1556073434-2e90c42245b7?q=80&w=600", imageAlt: "Sink plumbing installation" },
{ title: "Water Heaters", description: "Professional repair, maintenance, and installation for all heater types.", imageSrc: "https://images.unsplash.com/photo-1595085022207-67c74f56f437?q=80&w=600", imageAlt: "Water heater maintenance" },
]}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
@@ -95,8 +95,8 @@ export default function SuncoastPlumbingPage() {
title="Client Feedback"
description="Hear what our neighbors in South Houston have to say about our fast and reliable services."
testimonials={[
{ id: "1", name: "Sarah K.", handle: "Homeowner", testimonial: "They handled our sink repair instantly. Best fast-acting drainage service in town!", rating: 5 },
{ id: "2", name: "Mike D.", handle: "Business Owner", testimonial: "24/7 service that actually answers the phone. Excellent, professional plumbing work.", rating: 5 },
{ id: "1", name: "Sarah K.", handle: "Homeowner", testimonial: "They handled our sink repair instantly. Best fast-acting drainage service in town!", rating: 5, imageSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?q=80&w=200" },
{ id: "2", name: "Mike D.", handle: "Business Owner", testimonial: "24/7 service that actually answers the phone. Excellent, professional plumbing work.", rating: 5, imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?q=80&w=200" },
]}
showRating={true}
animationType="slide-up"
@@ -145,4 +145,4 @@ export default function SuncoastPlumbingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}