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

This commit is contained in:
2026-06-08 10:05:35 +00:00
parent a51f63cca2
commit f7ef69eaa0

View File

@@ -0,0 +1,40 @@
// 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 TestimonialOverlayCards from '@/components/sections/testimonial/TestimonialOverlayCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function TestimonialsSection(): React.JSX.Element {
return (
<div id="testimonials" data-section="testimonials">
<SectionErrorBoundary name="testimonials">
<TestimonialOverlayCards
tag="What Our Customers Say"
title="Sweet Words from Sweet People"
description="Hear directly from our satisfied customers about their delightful experiences with Sweet Delights Bakery. Your joy is our greatest reward!"
testimonials={[
{
name: "Sarah J.", role: "Local Professional", company: "Community Member", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/expressive-young-girl-posing-studio_176474-68234.jpg"},
{
name: "Mark T.", role: "Event Coordinator", company: "City Events", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/defocused-woman-working-laptop-outside-while-having-lunch_23-2148578246.jpg"},
{
name: "Emily R.", role: "Busy Parent", company: "Family Client", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-womens-having-lunch-home_23-2148451592.jpg"},
{
name: "David L.", role: "Office Manager", company: "Local Business", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-bread_1303-5910.jpg"},
{
name: "Jessica P.", role: "Food Blogger", company: "Taste Trails", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-young-male-baker-showing-mobile-phone-front-baked-croissant-shelves_23-2148189103.jpg"},
{
name: "Robert B.", role: "Loyal Customer", company: "Sweet Delights Regular", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/group-cheerful-friends-sharing-donuts-cafe_637285-7948.jpg"},
]}
/>
</SectionErrorBoundary>
</div>
);
}