May 27, 2026IntermediateTestimonialsSheaBinta
Review Carousel
Horizontally scrollable testimonials carousel with two card types: text-only reviews with bordered cards and image+text review cards. Features prev/next navigation arrows, star ratings, and CSS scroll-snap. Responsive from 6 visible cards on wide screens down to 1 on mobile. Inspired by Shopify testimonials-with-images section.
Preview
Source
import ReviewCarousel from "./index.jsx";
import { reviewCarousel } from "../demo-data.js";
function Placeholder({ height = "60vh", background = "#ffffff" }) {
return (
<div
style={{
height,
background,
display: "flex",
alignItems: "center",
justifyContent: "center",
color: "#ccc",
fontSize: "1rem",
fontFamily: "sans-serif",
letterSpacing: "0.05em",
textTransform: "uppercase",
}}
>
Section Placeholder
</div>
);
}
export default function ReviewCarouselDemo() {
return (
<>
<Placeholder />
<ReviewCarousel {...reviewCarousel} />
<Placeholder />
</>
);
}