One centred testimonial: a long serif quote that settles in word by word, the speaker's portrait, name and context beneath it, and a sliding-marker pill.
A single voice at display size: the quote settles in word by word in the centre of the page, with a portrait, a name and a context line under it, and a pill at the foot.
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/testimonial51?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/testimonial51?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/testimonial51.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports testimonial51Demo alongside the block: the exact props behind the preview above. Spread it to get a working testimonial in one line.
import { Testimonial51, testimonial51Demo } from "@/components/beste/block/testimonial51";
export default function Page() {
return <Testimonial51 {...testimonial51Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Testimonial51 } from "@/components/beste/block/testimonial51";
export default function Page() {
return (
<Testimonial51
eyebrow="One voice"
quote="I spent years telling people I was fine. The first thing anyone here said was that I did not have to be."
author={{
name: "Damien Rice",
context: "Two years with the practice",
avatar: { src: "/people/damien.jpg", alt: "Portrait of a client" },
}}
button={{ label: "More voices", href: "/stories", tone: "outline" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Small-caps line above the quote |
quote | string | – | The quote, rendered as a blockquote through Text1 |
author | Author | – | Portrait, name and context under the quote |
button | ActionButton | – | Pill action at the foot |
className | string | – | Extra classes for the outer <section> |
type Author = {
name: string;
context: string;
avatar: { src: string; alt: string };
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};blockquote and its attribution a figcaption, so the words are marked up as quoted material rather than as a large paragraph.0.03s, faster than the component's default, because a quote runs to far more words than a heading and the default rhythm would leave the reader waiting.0.2 + quote.split(" ").length * 0.03, the same arithmetic, so the attribution arrives exactly as the final word settles however long the quote is.max-w-4xl, so a display-size quote breaks into balanced lines instead of running the full width.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.
testimonial48
Long-form testimonials told as stories: a serif heading settling in word by word beside the intro and a pill action, then alternating rows that pair a drifting portrait photograph with a story title, a serif quote, the person, and a link to the full account.
testimonial6
Minimalist single testimonial with centered quote and author details. Perfect for hero sections or standalone social proof elements.
testimonial50
A rotating testimonial: a portrait on the left and a large serif quote on the right blur out and in together every six seconds, pause on hover, and can be chosen directly from a row of round portrait buttons, with a pill action beneath.