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

More Testimonial blocks

View all Testimonial
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

testimonial26

Quote Wall

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

PRO

testimonial36

Masonry Quote Wall

A monochrome masonry wall of varying-height testimonial cards in a CSS columns layout.

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.

FREE

testimonial8

Quote Cards Grid

Grid of testimonial cards with decorative quote marks and HTML-supported text highlighting. Perfect for showcasing multiple customer reviews with emphasis on key phrases.