Switch to version 1: remove src/pages/HomePage/sections/Testimonials.tsx

This commit is contained in:
2026-06-07 23:45:15 +00:00
parent c6a9cc727f
commit 01974166de

View File

@@ -1,52 +0,0 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "testimonials" section.
import React from 'react';
import TestimonialMarqueeCards from '@/components/sections/testimonial/TestimonialMarqueeCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function TestimonialsSection(): React.JSX.Element {
return (
<div id="testimonials" data-section="testimonials">
<SectionErrorBoundary name="testimonials">
<TestimonialMarqueeCards
tag="What Our Clients Say"
title="Trusted by the LA Community"
description="Hear directly from our satisfied customers about their experience with our expert plumbing team and exceptional service."
testimonials={[
{
name: "David R.",
role: "Restaurant Owner",
quote: "LA Plumbing Pros saved us during a busy dinner service. Their emergency response was incredible!",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman_1163-3145.jpg",
},
{
name: "Jessica L.",
role: "Homeowner",
quote: "The team was professional, clean, and fixed my leaky faucet perfectly. Highly recommend!",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-modern-woman-girl-sitting-couch-using-digital-tablet-reading-ebook_1258-201983.jpg",
},
{
name: "Mark T.",
role: "Property Manager",
quote: "Consistent, reliable service for all our properties. LA Plumbing Pros is our go-to for all plumbing needs.",
imageSrc: "http://img.b2bpic.net/free-photo/happy-middle-age-couple-having-date_23-2149016161.jpg",
},
{
name: "Sophia G.",
role: "Small Business Owner",
quote: "Affordable and effective drain cleaning. My business relies on them!",
imageSrc: "http://img.b2bpic.net/free-photo/laughing-woman-with-paper-bags_23-2147786761.jpg",
},
{
name: "Ethan C.",
role: "Homeowner",
quote: "They installed our new water heater efficiently and explained everything clearly. Fantastic service!",
imageSrc: "http://img.b2bpic.net/free-photo/joyful-colleagues-laughing-work_74855-4314.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}