58 lines
2.4 KiB
TypeScript
58 lines
2.4 KiB
TypeScript
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
|
// file as the canonical source for the "testimonial" section.
|
|
|
|
import React from 'react';
|
|
import TestimonialRatingCards from '@/components/sections/testimonial/TestimonialRatingCards';
|
|
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
|
|
|
export default function TestimonialSection(): React.JSX.Element {
|
|
return (
|
|
<div id="testimonial" data-section="testimonial">
|
|
<SectionErrorBoundary name="testimonial">
|
|
<TestimonialRatingCards
|
|
tag="Testimonials"
|
|
title="What Our Community Says"
|
|
description="Discover why families choose Tumaini for their children's education."
|
|
testimonials={[
|
|
{
|
|
name: "Neema K.",
|
|
role: "Parent",
|
|
quote: "Tumaini has provided my daughter with a solid foundation for university.",
|
|
rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-trendy-suit-emotionally-poses-with-notebooks-orange-wall_197531-23803.jpg",
|
|
},
|
|
{
|
|
name: "John S.",
|
|
role: "Alumni",
|
|
quote: "The education I received here opened many doors for my future.",
|
|
rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/view-cute-woman-smiling-street_197531-33990.jpg",
|
|
},
|
|
{
|
|
name: "Fatuma M.",
|
|
role: "Parent",
|
|
quote: "Dedicated teachers who truly care about every student.",
|
|
rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/happy-father-looking-his-little-son_23-2147615934.jpg",
|
|
},
|
|
{
|
|
name: "David W.",
|
|
role: "Parent",
|
|
quote: "A safe and nurturing environment for academic growth.",
|
|
rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-slavic-student-girl-wearing-backpack-tenses-biceps-holds-book-notebook_141793-99885.jpg",
|
|
},
|
|
{
|
|
name: "Aisha B.",
|
|
role: "Student",
|
|
quote: "I feel supported every day in my learning journey.",
|
|
rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/happy-business-people-posing-indoors_1262-20190.jpg",
|
|
},
|
|
]}
|
|
/>
|
|
</SectionErrorBoundary>
|
|
</div>
|
|
);
|
|
}
|