53 lines
2.3 KiB
TypeScript
53 lines
2.3 KiB
TypeScript
// 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="Feedback"
|
|
title="What Our Drivers Say"
|
|
description="Trusted by local residents for quality car care."
|
|
testimonials={[
|
|
{
|
|
name: "Alex R.",
|
|
role: "Sedan Driver",
|
|
quote: "Fast, affordable and professional. My go-to shop.",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/distraught-man-feeling-sad-while-showing-his-mechanic-car-breakdown-auto-repair-shop_637285-7708.jpg",
|
|
},
|
|
{
|
|
name: "Sarah K.",
|
|
role: "SUV Owner",
|
|
quote: "They fixed the squeak that two other shops missed.",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/car-being-taking-care-workshop_23-2149580607.jpg",
|
|
},
|
|
{
|
|
name: "Mark D.",
|
|
role: "Commuter",
|
|
quote: "Honest diagnostics, no unnecessary upsells.",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/worker-follows-car-checklist-fixing-tires_482257-75661.jpg",
|
|
},
|
|
{
|
|
name: "Jessica L.",
|
|
role: "Family Van",
|
|
quote: "Reliable and transparent. Highly recommended.",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/black-mechanic-his-manager-working-touchpad-auto-repair-shop_637285-8672.jpg",
|
|
},
|
|
{
|
|
name: "Tom B.",
|
|
role: "Daily Driver",
|
|
quote: "Excellent customer service every time.",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/happy-auto-repairman-his-colleague-communicating-while-working-together-workshop_637285-7662.jpg",
|
|
},
|
|
]}
|
|
/>
|
|
</SectionErrorBoundary>
|
|
</div>
|
|
);
|
|
}
|