Merge version_2 into main #6

Merged
bender merged 1 commits from version_2 into main 2026-04-02 13:45:43 +00:00

View File

@@ -10,7 +10,7 @@ import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTe
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import { Droplets, ShieldCheck, Zap } from "lucide-react";
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
export default function LandingPage() {
return (
@@ -100,18 +100,16 @@ export default function LandingPage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFive
<TestimonialCardTen
textboxLayout="default"
useInvertedBackground={true}
testimonials={[
{ id: "1", name: "Sarah Miller", date: "2024-05-12", title: "Great Service", quote: "Incredibly fast response time! Fixed our leak within an hour.", tag: "Emergency", avatarSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721550.jpg", imageSrc: "http://img.b2bpic.net/free-photo/red-bird-3d-illustration_183364-123375.jpg" },
{ id: "2", name: "John Doe", date: "2024-06-01", title: "Professional", quote: "Very professional and transparent about costs. Highly recommend.", tag: "Maintenance", avatarSrc: "http://img.b2bpic.net/free-photo/happy-auto-repairman-handshaking-with-customer-workshop_637285-8634.jpg", imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721579.jpg" },
{ id: "3", name: "Alice Green", date: "2024-06-15", title: "Best in Town", quote: "The best plumbing service in town. Reliable and clean.", tag: "Repair", avatarSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-working-as-plumber_23-2150746316.jpg", imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721550.jpg?_wi=2" },
{ id: "4", name: "Mark Evans", date: "2024-07-10", title: "Lifesavers", quote: "Saved the day during our bathroom emergency. Great team.", tag: "Emergency", avatarSrc: "http://img.b2bpic.net/free-photo/woman-with-smartphone-near-ear-looking-sink_259150-58298.jpg", imageSrc: "http://img.b2bpic.net/free-photo/happy-auto-repairman-handshaking-with-customer-workshop_637285-8634.jpg?_wi=2" },
{ id: "5", name: "Linda White", date: "2024-07-22", title: "Highly Recommend", quote: "Honest quotes and quality craftsmanship every single time.", tag: "Maintenance", avatarSrc: "http://img.b2bpic.net/free-photo/smiley-senior-couple-holding-their-tablet_23-2148404369.jpg", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-working-as-plumber_23-2150746316.jpg?_wi=2" }
]}
title="What Our Clients Say"
description="Providing peace of mind through excellence and reliability."
testimonials={[
{ id: "1", name: "Sarah Miller", role: "Homeowner", title: "Great Service", quote: "Incredibly fast response time! Fixed our leak within an hour.", imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721550.jpg" },
{ id: "2", name: "John Doe", role: "Property Manager", title: "Professional", quote: "Very professional and transparent about costs. Highly recommend.", imageSrc: "http://img.b2bpic.net/free-photo/happy-auto-repairman-handshaking-with-customer-workshop_637285-8634.jpg" },
{ id: "3", name: "Alice Green", role: "Homeowner", title: "Best in Town", quote: "The best plumbing service in town. Reliable and clean.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-working-as-plumber_23-2150746316.jpg" }
]}
/>
</div>
@@ -161,4 +159,8 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}"
}
],
"rawPlan": "I have updated the website's testimonial section with a new, more professional layout to better showcase customer feedback and build trust with visitors."
}