Switch to version 6: added src/pages/HomePage/sections/Testimonials.tsx

This commit is contained in:
2026-06-07 20:52:58 +00:00
parent 2c5f386918
commit ac1e2fd51c

View File

@@ -0,0 +1,58 @@
// 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 TestimonialColumnMarqueeCards from '@/components/sections/testimonial/TestimonialColumnMarqueeCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function TestimonialsSection(): React.JSX.Element {
return (
<div id="testimonials" data-section="testimonials">
<SectionErrorBoundary name="testimonials">
<TestimonialColumnMarqueeCards
tag="Happy Customers"
title="What Our Community Says"
description="Hear from those who've savored our freshly baked goodness and experienced our warm service."
testimonials={[
{
name: "Sarah J.",
role: "Local Resident",
quote: "The Daily Crumb is my go-to for morning pastries. Their croissants are simply divine and the staff always makes my day!",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-pretty-girl-model-standing-holding-cabbage_114579-74354.jpg",
},
{
name: "Mark T.",
role: "Small Business Owner",
quote: "I order all my corporate event pastries from here. Always fresh, always delicious, and always on time!",
imageSrc: "http://img.b2bpic.net/free-photo/professional-barber-man-apron-looking-front-smiliung-cheerfully-showing-ok-sign-standing-orange-wall_141793-96581.jpg",
},
{
name: "Emily R.",
role: "Food Blogger",
quote: "Every item from The Daily Crumb is a masterpiece. Their sourdough bread is a game-changer, perfectly crusty and airy inside.",
imageSrc: "http://img.b2bpic.net/free-photo/young-girl-with-short-hair-wearing-white-polo-shirt-holding-notebook-pen-writing-with-serious-face_141793-46470.jpg",
},
{
name: "David K.",
role: "Parent",
quote: "Their custom cakes for birthdays are incredible! Beautiful designs and amazing flavors. My kids absolutely love them.",
imageSrc: "http://img.b2bpic.net/free-photo/young-male-showing-paper-bag-t-shirt-jacket-looking-cheery-front-view_176474-91622.jpg",
},
{
name: "Grace L.",
role: "Retiree",
quote: "This bakery feels like home. The warm service and the aroma of fresh bread always make my visits a delight. A true neighborhood gem.",
imageSrc: "http://img.b2bpic.net/free-photo/cropped-shot-cheerful-attractive-grandmother-white-shirt-holding-piece-freshly-baked-berry-pie-birthday-having-joyful-facial-expression-smiling-broadly_343059-1898.jpg",
},
{
name: "James & Lily",
role: "Couple",
quote: "We discovered The Daily Crumb last year and haven't looked back. Their coffee and pastries are our weekend ritual!",
imageSrc: "http://img.b2bpic.net/free-photo/young-man-feeding-woman-with-croissant-bed_23-2148012227.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}