Client Quote Ledger

(Said afterwards)

Three clients, asked six months later.

Logoipsum
They rewrote a homepage we had argued about for a year, and then explained it back to us so clearly that the argument never came up again.

Ines Volkert

Head of Brand

Worked on

Identity and site

Logoipsum
The system still holds. Two designers have joined since launch and neither of them needed us to explain how anything works.

Petrus Lindgren

Product Director

Worked on

Design system

Logoipsum
What surprised us was how much they took off our plate. We expected a design partner and got somebody who ran the launch with us.

Amara Osei

Founder

Worked on

Launch campaign

About this block

Client Quote LedgerPRO

Three testimonials as ruled columns, each led by a grayscale client logo, followed by a large quote and an attribution block that names the person, the role and the project they hired the studio for.

Testimonial45: Client Quote Ledger

Three testimonials as ruled columns, each led by a grayscale client logo so the proof lands before the sentence does. Under the quote sits an attribution block naming the person, their role and the project they hired you for.

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

Base UI flavor

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

This installs the block to components/beste/block/testimonial45.tsx plus the badge7 component it uses for the eyebrow.

Quick start

The installed file exports testimonial45Demo alongside the block: the exact props behind the preview above. Spread it to get a working testimonial row in one line.

tsx
import { Testimonial45, testimonial45Demo } from "@/components/beste/block/testimonial45";

export default function Page() {
  return <Testimonial45 {...testimonial45Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Testimonial45 } from "@/components/beste/block/testimonial45";

export default function Page() {
  return (
    <Testimonial45
      badge={{ label: "Said afterwards" }}
      heading="Three clients, asked six months later."
      labels={{ projectTitle: "Worked on" }}
      quotes={[
        {
          logo: { src: "/logos/hallvard.png", alt: "Hallvard Press" },
          quote: "They rewrote a homepage we had argued about for a year.",
          name: "Ines Volkert",
          role: "Head of Brand",
          project: "Identity and site",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow label rendered as a Badge7
headingstringSection heading above the columns
quotesClientQuote[][]One ruled column per testimonial
labelsTestimonial45Labels{}Fixed strings that are not content: the label above each project name
classNamestringExtra classes for the outer <section>
ts
type ClientQuote = {
  logo: { src: string; alt: string };
  quote: string;
  name: string;
  role: string;
  project: string;
};

type Testimonial45Labels = {
  projectTitle?: string;
};

Behavior notes

  • Logos render at a fixed h-7 (md:h-8) with object-contain and a constant opacity-50 grayscale, which is the set's rule for client marks: they identify the source without competing with the quote.
  • Each logo carries self-start object-left, so wordmarks of different widths all begin on the column's left edge instead of being centred by the flex column's default stretch.
  • Each column is a figure with a blockquote and figcaption, so the attribution is programmatically tied to the quote rather than being a sibling paragraph.
  • The caption block carries mt-auto, so attributions align across all three columns even when one quote runs two lines longer than the others.
  • The project line sits under its own border-t inside the caption, which separates what they said from what you did for them.
  • Quotes are set at text-xl md:text-2xl in font-semibold: large enough to carry the section, small enough that three of them fit side by side without truncation.

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

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

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

testimonial26

Quote Wall

Masonry column wall of varied-length testimonial cards with avatars.

PRO

testimonial41

Editorial Quote Proof

An editorial testimonial with an eyebrow, a large light quote and author on the left, an image tile floating a proof stat on the right, and a centered trust cluster below a hairline rule.