Review Components
Showcase of all 4 review component variants for testimonials.
Variant: grid
2–3 column card grid of testimonials. The standard layout for multiple reviews.
Review Grid
Customer testimonials in card format
"Exceptional quality and attention to detail. The service transformed our project beautifully."
Facilities Manager, The Ritz London
"The gold plating work was absolutely stunning. Our clients were thrilled with the results."
Interior Designer, Studio Arc
"Professional service from start to finish. Highly recommend for any commercial project."
Project Director, Harrods
{
"component": "reviews",
"variant": "grid",
"data": {
"heading": "Review Grid",
"subheading": "Customer testimonials in card format",
"columns": 3,
"reviews": [
{ "name": "John Smith", "title": "Facilities Manager", "company": "The Ritz London", "quote": "Exceptional quality and attention to detail. The service transformed our project beautifully.", "rating": 5 },
{ "name": "Sarah Johnson", "title": "Interior Designer", "company": "Studio Arc", "quote": "The gold plating work was absolutely stunning. Our clients were thrilled with the results.", "rating": 5 },
{ "name": "Michael Chen", "title": "Project Director", "company": "Harrods", "quote": "Professional service from start to finish. Highly recommend for any commercial project.", "rating": 5 }
]
}
}
<section class="bg-white py-5">
<div class="container">
<!-- Review cards -->
</div>
</section>
Variant: featured
Single highlighted review. Works on light and dark backgrounds (card contrast is handled by the component).
Featured Review
A single standout testimonial
"We've worked with this company for over a decade. Their craftsmanship is unmatched in the industry. Every project has exceeded our expectations."
{
"component": "reviews",
"variant": "featured",
"data": {
"heading": "Featured Review",
"subheading": "A single standout testimonial",
"review": {
"name": "James Wilson",
"title": "Head of Procurement",
"company": "The Dorchester",
"quote": "We've worked with this company for over a decade. Their craftsmanship is unmatched in the industry. Every project has exceeded our expectations.",
"rating": 5
},
"bg": "light"
}
}
<section class="bg-light py-5">
<div class="container">
<!-- Featured review card -->
</div>
</section>
Variant: carousel
Sliding testimonials with navigation. Good for many reviews in limited space.
What Our Clients Say
{
"component": "reviews",
"variant": "carousel",
"data": {
"heading": "What Our Clients Say",
"reviews": [
{ "name": "Emma Davies", "company": "Savoy Hotel", "quote": "Outstanding restoration work on our historic fixtures.", "rating": 5 },
{ "name": "Robert Taylor", "company": "Claridge's", "quote": "The team's expertise and professionalism is second to none.", "rating": 5 },
{ "name": "Lisa Anderson", "company": "The Connaught", "quote": "Delivered on time and exceeded all quality expectations.", "rating": 5 }
],
"bg": "green"
}
}
<section class="bg-green py-5">
<div class="container">
<!-- Carousel -->
</div>
</section>