Files
044cc761-eec7-45c8-bd1a-7cd…/src/pages/HomePage/sections/Testimonials.tsx

65 lines
3.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// 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 TestimonialRatingCards from '@/components/sections/testimonial/TestimonialRatingCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function TestimonialsSection(): React.JSX.Element {
return (
<div id="testimonials" data-section="testimonials">
<SectionErrorBoundary name="testimonials">
<TestimonialRatingCards
tag="What Our Guests Say"
title="Our Valued Customers Speak"
description="Hear from our guests about their unforgettable dining experiences at Phở Bờ Biển, where every meal is a delight."
testimonials={[
{
name: "Sarah J.",
role: "Local Foodie",
quote: "Phở Bờ Biển is a true gem! The phở broth is incredibly rich and flavorful, just like I remember from my travels in Vietnam. This is my new go-to spot for authentic Vietnamese food in Santa Barbara.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/arm-close-up-woman-with-shopping-bags_1098-2428.jpg",
},
{
name: "Michael Chen",
role: "Restaurant Critic",
quote: "A delightful culinary journey! The fresh spring rolls are impeccably prepared, and the Bánh Mì is a revelation. Phở Bờ Biển brings a genuine taste of Hanoi to our vibrant city.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-looking-camera_23-2148112827.jpg",
},
{
name: "Emily R.",
role: "Santa Barbara Resident",
quote: "The family story behind Phở Bờ Biển truly shines through in their food. It's not just a meal; it's an experience filled with warmth and incredible flavors. Highly recommend the Phở Đặc Biệt!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-carefree-happy-young-woman-with-curly-hair-dressed-fur-jacket-trousers-dances-with-arms-raised-up-keeps-eyes-closed-isolated-pink-wall_273609-55702.jpg",
},
{
name: "David Kim",
role: "Visiting Chef",
quote: "As a chef, I appreciate the dedication to authenticity and quality ingredients. The depth of flavor in their broth is outstanding. A must-visit for anyone seeking true Vietnamese cuisine.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/handsome-sassy-senior-man-assure-showing-okay-gesture-smiling-pleased_176420-31830.jpg",
},
{
name: "Jessica & Tom",
role: "Happy Couple",
quote: "We love coming here for date night! The atmosphere is charming, and the food is consistently amazing. The Bún Chả Giò Nướng is our absolute favorite. Thank you for such wonderful evenings!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/group-young-people-enjoying-dinner-together_23-2148454092.jpg",
},
{
name: "Linh Tran",
role: "Family Friend",
quote: "Its like eating at home! The flavors are spot on, bringing back so many cherished memories. Phở Bờ Biển truly honors our heritage. A taste of Vietnam right here in Santa Barbara.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-male-chef-standing-kitchen-shrugging_23-2147863654.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}