I expected advice. I got attention, which turned out to be what I was short of.
Angel Olsen
Individual therapy
The plan we wrote in week one was still on my fridge in week twelve. That never happens to me.
Kurt Vile
Coaching
Evenings, online, from a hotel room most weeks. It still felt like the same chair.
Cate Le Bon
Evening practice
Three short testimonials in ruled columns, each a serif quote with a name and context, under a serif heading that settles in word by word and a sliding-marker pill.
Three short quotes in a ruled row, each with a name and the kind of work it came from, with the vertical rules drawn only between the columns.
Upgrade to Pro
Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.
Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.
Radix flavor
npx shadcn add "https://ui.beste.co/r/testimonial54?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/testimonial54?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/testimonial54.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports testimonial54Demo alongside the block: the exact props behind the preview above. Spread it to get a working testimonial row in one line.
import { Testimonial54, testimonial54Demo } from "@/components/beste/block/testimonial54";
export default function Page() {
return <Testimonial54 {...testimonial54Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Testimonial54 } from "@/components/beste/block/testimonial54";
export default function Page() {
return (
<Testimonial54
eyebrow="Three sentences each"
heading="What people say when we ask them to keep it short."
button={{ label: "Longer stories", href: "/stories", tone: "outline" }}
quotes={[
{ quote: "I expected advice. I got attention, which turned out to be what I was short of.", name: "Angel Olsen", context: "Individual therapy" },
{ quote: "The plan we wrote in week one was still on my fridge in week twelve.", name: "Kurt Vile", context: "Coaching" },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Small-caps line above the heading |
heading | string | – | Section heading, rendered as an h2 through Text1 |
button | ActionButton | – | Pill action beside the heading |
quotes | Quote[] | [] | Quotes, three across from md |
className | string | – | Extra classes for the outer <section> |
type Quote = {
quote: string;
name: string;
context: string;
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};md:border-l on each quote with md:first:border-l-0 unsetting the first, so a three-up row is separated without an outer line on either edge.md, so on a phone the quotes stack with spacing rather than carrying a stray vertical rule.flex with justify-between, so the attributions line up along the bottom of the row however uneven the quotes are.figure elements with a blockquote and a figcaption, so the attribution stays bound to the words.0.12s stagger by index, resolving left to right.md, so a fourth quote wraps to a new row rather than compressing the first three.testimonial52
Four reviews in two columns under a ruled header: each with a five-star row, a serif quote, a portrait, a name and a context line, beneath a serif heading that settles in word by word and a pill action.
testimonial49
A wall of six short testimonials on soft muted cards, the middle column set a step lower, each with a serif quote, a portrait, a name and a context line, under a serif heading that settles in word by word and a pill action.
testimonial42
A testimonial grid with an eyebrow over a hairline rule, a two-column heading, and three bordered quote cards each closing with an author avatar, name, and role.
testimonial53
One long testimonial beside a portrait: the photograph drifts inside its frame on the left while a serif quote settles in word by word on the right, closed by a ruled row with the speaker's name, context and a sliding-marker pill.