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

This commit is contained in:
2026-06-07 19:02:09 +00:00
parent fb585b5d81
commit c3ee3df13c

View File

@@ -0,0 +1,64 @@
// 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 TestimonialRatingCards from '@/components/sections/testimonial/TestimonialRatingCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function ReviewsSection(): React.JSX.Element {
return (
<div id="reviews" data-section="reviews">
<SectionErrorBoundary name="reviews">
<TestimonialRatingCards
tag="What Our Guests Say"
title="Rave Reviews from Pizza Lovers"
description="Our customers can't get enough of our authentic flavors and friendly service. Hear what they have to say!"
testimonials={[
{
name: "Sarah J.",
role: "Local Resident",
quote: "The best pizza in San Francisco, hands down! The crust is perfect, and the toppings are always fresh. A must-try!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/attractive-hipster-dressed-leather-jacket-eating-vegan-burger_613910-16395.jpg",
},
{
name: "Michael T.",
role: "Food Blogger",
quote: "An absolute culinary delight! Every slice is a journey of flavor. The Margherita is exceptional.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-friends-eating-pizza_23-2151231308.jpg",
},
{
name: "Emily R.",
role: "Tech Professional",
quote: "Fast, friendly, and incredibly delicious. My go-to spot for pizza night. Highly recommend the BBQ Chicken!",
rating: 4,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-eating-delicious-pizza_23-2150317035.jpg",
},
{
name: "David L.",
role: "Tourist",
quote: "Stumbled upon this gem and was blown away. Truly authentic taste, felt like I was back in Italy!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/handsome-smiling-man-eat-salade-restaurant-waiting-woman-with-bouquet-roses_496169-302.jpg",
},
{
name: "Jessica B.",
role: "Student",
quote: "Affordable and amazing quality. Perfect for a quick lunch or a relaxed dinner with friends. Loved the veggie options.",
rating: 4,
imageSrc: "http://img.b2bpic.net/free-photo/front-view-family-eating-pizza-outdoors_23-2149931059.jpg",
},
{
name: "Chris P.",
role: "Artisan Baker",
quote: "As a fellow baker, I appreciate the craftsmanship. The dough is expertly fermented, making for a superb crust.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-eating-pizza_23-2149454362.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}