Starred Reviews

Reviews

Intheirownwords,unedited.

I was worried therapy would feel clinical. It felt like a long conversation with someone who had all afternoon.
Portrait

Feist

Individual therapy

Twelve weeks of coaching and I finally handed in the notice I had been drafting for three years.
Portrait

Andrew Bird

Coaching

The evening slot is the reason I could start at all. Nobody else offered one.
Portrait

Mitski

Evening practice

Video sessions from another time zone, and it still felt like the room. I do not know how.
Portrait

Bill Callahan

Online

About this block

Starred ReviewsPRO

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.

Testimonial52: Starred Reviews

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.

Upgrade Now

Installation

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

bash
npx shadcn add "https://ui.beste.co/r/testimonial52?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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" },
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the heading
headingstringSection heading, rendered as an h2 through Text1
buttonActionButtonPill action beside the heading
reviewsReview[][]Reviews, two across from md
classNamestringExtra classes for the outer <section>
ts
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";
};

Behavior notes

  • Unlike the call-to-action blocks in this set, all five stars are always drawn and the empty ones are left in the border colour, so a four out of five reads as exactly that rather than as four marks in isolation.
  • The rating is rounded and clamped into 0 to 5 before drawing, so a value out of range cannot break the row.
  • The entry delay is (index % 2) * 0.12, so each row of two arrives a beat apart rather than the stagger growing down four reviews.
  • Each review is a figure with a blockquote and a figcaption, so the attribution is bound to the words.
  • There is no card surface: the reviews sit on the page under one 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.
  • Nothing here is a link; the pill beside the heading is the only interactive element.

More Testimonial blocks

View all Testimonial
PRO

testimonial54

Three Ruled Quotes

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.

PRO

testimonial42

Three Quote Grid

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.

PRO

testimonial49

Notes Wall

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.

PRO

testimonial43

Quote With Rating

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.

PRO

testimonial48

Client Stories

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.

PRO

testimonial32

Scrolling Testimonial Wall

Centered header above three vertically auto-scrolling columns of rated review cards with fade masks, pause-on-hover, and a closing CTA.