I was worried therapy would feel clinical. It felt like a long conversation with someone who had all afternoon.
Feist
Individual therapy
Twelve weeks of coaching and I finally handed in the notice I had been drafting for three years.
Andrew Bird
Coaching
The evening slot is the reason I could start at all. Nobody else offered one.
Mitski
Evening practice
Video sessions from another time zone, and it still felt like the room. I do not know how.
Bill Callahan
Online
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.
Four reviews in a ruled grid: each opens on a five-star rating drawn out of five, then a serif quote, a portrait and the context in which the person worked with you.
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/testimonial52?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/testimonial52?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/testimonial52.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports testimonial52Demo alongside the block: the exact props behind the preview above. Spread it to get a working reviews section in one line.
import { Testimonial52, testimonial52Demo } from "@/components/beste/block/testimonial52";
export default function Page() {
return <Testimonial52 {...testimonial52Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Testimonial52 } from "@/components/beste/block/testimonial52";
export default function Page() {
return (
<Testimonial52
eyebrow="Reviews"
heading="In their own words, unedited."
button={{ label: "Read all reviews", href: "/reviews", tone: "outline" }}
reviews={[
{
quote: "I was worried therapy would feel clinical. It felt like a long conversation.",
name: "Feist",
context: "Individual therapy",
rating: 5,
avatar: { src: "/people/feist.jpg", alt: "Portrait" },
},
]}
/>
);
}| 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 |
reviews | Review[] | [] | Reviews, two across from md |
className | string | – | Extra classes for the outer <section> |
type Review = {
quote: string;
name: string;
context: string;
rating: number;
avatar: { src: string; alt: string };
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};0 to 5 before drawing, so a value out of range cannot break the row.(index % 2) * 0.12, so each row of two arrives a beat apart rather than the stagger growing down four reviews.figure with a blockquote and a figcaption, so the attribution is bound to the words.border-t, which keeps a wall of four quotes from reading as four panels.context is a free string, so "Individual therapy", "Online" or "Evening practice" all read naturally without a taxonomy.testimonial54
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.
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.
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.
testimonial43
A testimonial with an eyebrow over a hairline rule, pairing a large light quote and author on the left with an image tile that floats a live star-rating card on the right.