Reader Letters, Printed In FullPRO

Two long replies set as letters rather than pull quotes, each running at full length on a hairline and signed off with the sender's portrait, where they work and the date it arrived.

Testimonial47: Reader Letters, Printed In Full

Two long replies set as letters rather than pull quotes, each running at full length on a hairline and signed off with the sender's portrait, where they work and the date it arrived.

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

Base UI flavor

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

This installs the block to components/beste/block/testimonial47.tsx and the badge6 component it uses for the eyebrow (installed to components/beste/component/badge6.tsx).

Quick start

The installed file exports testimonial47Demo alongside the block: the exact props behind the preview above. Spread it to get a working letters section in one line.

tsx
import { Testimonial47, testimonial47Demo } from "@/components/beste/block/testimonial47";

export default function RepliesPage() {
  return <Testimonial47 {...testimonial47Demo} />;
}

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

tsx
import { Testimonial47 } from "@/components/beste/block/testimonial47";

export default function RepliesPage() {
  return (
    <Testimonial47
      eyebrow="Replies"
      heading="Letters we did not expect to get"
      description="These arrived as replies to an issue, not as testimonials."
      letters={[
        {
          body: "I did it your way for the last three quotes and two of them closed at the price on the page.",
          name: "Maria Santos",
          role: "Independent, Lisbon",
          received: "Received 12 March",
          avatar: { src: "/people/maria.jpg", alt: "Maria Santos" },
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringBadge6 label above the hairline rule
headingstringSection heading under the rule
descriptionstringSupporting paragraph
lettersLetter[][]One letter per column
classNamestringExtra classes for the outer section
ts
type Letter = {
  body: string;
  name: string;
  role: string;
  received: string;
  avatar?: Avatar;
};

type Avatar = {
  src: string;
  alt: string;
};

Behavior notes

More Testimonial blocks

View all Testimonial
PRO

testimonial34

Testimonial Marquee

Two rows of monochrome quote cards scrolling in opposite directions with edge fades.

PRO

testimonial35

Oversized Pull-Quote Testimonial

A single dramatic pull-quote with a decorative mark, centered above a rounded avatar, name, and role.

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.

PRO

testimonial33

Split Quote Card

Centered parenthetical eyebrow and bold heading above a split card: a full-bleed portrait on the left and a large quote with author attribution on a muted panel to the right.

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

testimonial44

Portrait Customer Story

A single customer story that sets a tall portrait with a gradient name card beside an oversized light quote, a hairline row of three proof figures, and a link into the full write-up.

Markdown version