Three Ruled Quotes

Three sentences each

Whatpeoplesaywhenweaskthemtokeepitshort.

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

About this block

Three Ruled QuotesPRO

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.

Testimonial54: Three Ruled Quotes

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.

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/testimonial54?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

Quick start

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.

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

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

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the heading
headingstringSection heading, rendered as an h2 through Text1
buttonActionButtonPill action beside the heading
quotesQuote[][]Quotes, three across from md
classNamestringExtra classes for the outer <section>
ts
type Quote = {
  quote: string;
  name: string;
  context: string;
};

type ActionButton = {
  label: string;
  href: string;
  tone?: "primary" | "light" | "dark" | "outline";
};

Behavior notes

  • There are no portraits here, which is the point of the block: it is the lightest testimonial in the set, with nothing to load beyond the type.
  • The dividing rules come from 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.
  • Those borders apply only from md, so on a phone the quotes stack with spacing rather than carrying a stray vertical rule.
  • Each column is flex with justify-between, so the attributions line up along the bottom of the row however uneven the quotes are.
  • Quotes are figure elements with a blockquote and a figcaption, so the attribution stays bound to the words.
  • Columns enter with a 0.12s stagger by index, resolving left to right.
  • The grid is fixed at three from md, so a fourth quote wraps to a new row rather than compressing the first three.

More Testimonial blocks

View all Testimonial
PRO

testimonial52

Starred Reviews

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.

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

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

testimonial53

Portrait and Long Quote

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.

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

testimonial51

Single Voice

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.