57 lines
2.5 KiB
TypeScript
57 lines
2.5 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 TestimonialMarqueeOverlayCards from "@/components/sections/testimonial/TestimonialMarqueeOverlayCards";
|
|
|
|
export default function TestimonialsSection(): React.JSX.Element {
|
|
return (
|
|
<div id="testimonials">
|
|
<TestimonialMarqueeOverlayCards
|
|
tag="Testimonials"
|
|
title="Hear It From Our Clients"
|
|
description="Real results from real customers who trust us with their vehicles"
|
|
primaryButton={{ text: "Book Now", href: "#contact" }}
|
|
secondaryButton={{ text: "View Gallery", href: "#services" }}
|
|
testimonials={[
|
|
{
|
|
name: "James Wilson",
|
|
role: "BMW Owner",
|
|
company: "Miami, FL",
|
|
rating: 5,
|
|
imageSrc: "https://storage.googleapis.com/webild/default/templates/detailing/testimonials/testimonial1.webp",
|
|
},
|
|
{
|
|
name: "Maria Santos",
|
|
role: "Tesla Owner",
|
|
company: "Coral Gables, FL",
|
|
rating: 5,
|
|
imageSrc: "https://storage.googleapis.com/webild/default/templates/detailing/testimonials/testimonial2.webp",
|
|
},
|
|
{
|
|
name: "David Chen",
|
|
role: "Porsche Owner",
|
|
company: "Brickell, FL",
|
|
rating: 5,
|
|
imageSrc: "https://storage.googleapis.com/webild/default/templates/detailing/testimonials/testimonial3.webp",
|
|
},
|
|
{
|
|
name: "Sarah Thompson",
|
|
role: "Mercedes Owner",
|
|
company: "South Beach, FL",
|
|
rating: 4,
|
|
imageSrc: "https://storage.googleapis.com/webild/default/templates/detailing/testimonials/testimonial4.webp",
|
|
},
|
|
{
|
|
name: "Michael Johnson",
|
|
role: "Audi Owner",
|
|
company: "Coconut Grove, FL",
|
|
rating: 5,
|
|
imageSrc: "https://storage.googleapis.com/webild/default/templates/detailing/testimonials/testimonial5.webp",
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|