43 lines
1.8 KiB
TypeScript
43 lines
1.8 KiB
TypeScript
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
|
// file as the canonical source for the "reviews" section.
|
|
|
|
import React from 'react';
|
|
import TestimonialTrustCard from '@/components/sections/testimonial/TestimonialTrustCard';
|
|
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
|
|
|
export default function ReviewsSection(): React.JSX.Element {
|
|
return (
|
|
<div id="reviews" data-section="reviews">
|
|
<SectionErrorBoundary name="reviews">
|
|
<TestimonialTrustCard
|
|
quote="Coffee is absolutely delicious — tasty sandwiches and desserts. I recommend the Iced Salted Maple Latte with vanilla foam."
|
|
rating={5}
|
|
author="Local Regular"
|
|
avatars={[
|
|
{
|
|
name: "Sarah J.",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/baker-keeping-tray-baked-buns-shelf_1170-2269.jpg",
|
|
},
|
|
{
|
|
name: "Mike D.",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/people-hangout-together-coffee-shop_53876-22946.jpg",
|
|
},
|
|
{
|
|
name: "Elena R.",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/cafe-small-business-smiling-asian-barista-apron-standing-counter-coffee-shop_1258-199488.jpg",
|
|
},
|
|
{
|
|
name: "David K.",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-posing_23-2149745618.jpg",
|
|
},
|
|
{
|
|
name: "Sophie L.",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/adorable-lovely-woman-fashion-clothes-is-sitting-open-air-cafe-is-using-smartphone-waiting-friends-city-lights-background_291650-842.jpg",
|
|
},
|
|
]}
|
|
/>
|
|
</SectionErrorBoundary>
|
|
</div>
|
|
);
|
|
}
|