53 lines
2.9 KiB
TypeScript
53 lines
2.9 KiB
TypeScript
// 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="What Our Community Says"
|
||
title="Voices of Joes Coffee"
|
||
description="Don't just take our word for it – hear from our beloved patrons about their experiences and why Joes Coffee is their favorite spot."
|
||
testimonials={[
|
||
{
|
||
name: "Mark Jenkins",
|
||
role: "Local Artist, Seattle",
|
||
quote: "Joes Coffee is my daily escape. The latte art is always beautiful, and the cozy atmosphere inspires my work. It's truly a hidden gem!",
|
||
imageSrc: "https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&q=80&w=800",
|
||
},
|
||
{
|
||
name: "Sarah Lawson",
|
||
role: "Small Business Owner, Portland",
|
||
quote: "The best coffee in town, hands down. I appreciate the quality and consistency, and the staff are always incredibly welcoming. My go-to spot for meetings.",
|
||
imageSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&q=80&w=800",
|
||
},
|
||
{
|
||
name: "Emily Roberts",
|
||
role: "Graduate Student, Austin",
|
||
quote: "I love coming here to study. The quiet corners and endless coffee keep me going. Plus, their sandwiches are amazing when I need a break!",
|
||
imageSrc: "https://images.unsplash.com/photo-1534528741775-53994a69daeb?auto=format&fit=crop&q=80&w=800",
|
||
},
|
||
{
|
||
name: "David Kim",
|
||
role: "Software Engineer, Chicago",
|
||
quote: "It feels like home here. The baristas know my order, and there's always a friendly face. Joes Coffee is more than just a cafe; it's a community.",
|
||
imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&q=80&w=800",
|
||
},
|
||
{
|
||
name: "Olivia Martinez",
|
||
role: "Food Blogger, New York",
|
||
quote: "From the first sip to the last bite of their pastries, Joes Coffee consistently delivers excellence. A must-visit for any coffee enthusiast!",
|
||
imageSrc: "https://images.unsplash.com/photo-1517841905240-472988babdf9?auto=format&fit=crop&q=80&w=800",
|
||
},
|
||
]}
|
||
/>
|
||
</SectionErrorBoundary>
|
||
</div>
|
||
);
|
||
}
|