Skip to main content

Testimonials

A component to display customer testimonials or reviews.

Component Preview

Props

PropTypeDescription
itemsTestimonialItem[]Array of testimonials to display.
titlestringOptional title for the section.
subtitlestringOptional subtitle for the section.
classNamestringOptional CSS class name for the wrapper.

TestimonialItem Interface

PropertyTypeDescription
namestringName of the person.
rolestringRole or job title of the person.
quotestringThe testimonial text.
companystringOptional company name.
imageSrcstringOptional URL for the person's photo.
ratingnumberOptional rating (e.g., number of stars).

JSON Data Example

{
"type": "Testimonials",
"data": {
"title": "Trusted by Industry Leaders",
"subtitle": "See what our clients have to say about their experience with us.",
"items": [
{
"id": "1",
"name": "Sarah Johnson",
"role": "CTO",
"company": "TechFlow",
"quote": "This platform has completely transformed how our engineering team operates.",
"rating": 5,
"imageSrc": "https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=150&q=80"
}
]
}
}