May 27, 2026SimpleTestimonialsSheaBinta
Split Testimonial
Two-column brick section with a full-bleed image on the left and a centered testimonial quote on the right. Features star rating, quote, author name, and an outline CTA button. Stacks vertically on mobile with the image on top. Inspired by Shopify brick-section layout.
Preview
Source
import SplitTestimonial from "./index.jsx";
import { splitTestimonial } 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 SplitTestimonialDemo() {
return (
<>
<Placeholder />
<SplitTestimonial {...splitTestimonial} />
<Placeholder />
</>
);
}
