Founders' LetterPRO

A long-form company letter set in a wide reading column with an accent-ruled pull quote and signed off by avatar bylines, beside a narrower column of captioned portraits.

About71: Founders' Letter

A long-form company letter set in a wide reading column with an accent-ruled pull quote and signed off by avatar bylines, beside a narrower column of captioned portraits.

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

Base UI flavor

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

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

Quick start

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

tsx
import { About71, about71Demo } from "@/components/beste/block/about71";

export default function AboutPage() {
  return <About71 {...about71Demo} />;
}

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

tsx
import { About71 } from "@/components/beste/block/about71";

export default function AboutPage() {
  return (
    <About71
      badge={{ label: "A letter" }}
      heading="Why we built this instead of something easier"
      paragraphs={[
        "In 2020 the two of us spent a fortnight working reception at a practice in Bristol. We were bad at it.",
        "Clinical software is usually bought by one group of people and used by another, and the gap between them is where the frustration lives.",
      ]}
      pullQuote="The gap between who buys clinical software and who uses it is where the frustration lives."
      signatories={[
        {
          name: "Elena Rourke",
          role: "Co-founder",
          avatar: { src: "/people/elena.jpg", alt: "Portrait of Elena Rourke" },
        },
        {
          name: "Priya Nandan",
          role: "Co-founder",
          avatar: { src: "/people/priya.jpg", alt: "Portrait of Priya Nandan" },
        },
      ]}
      portraits={[
        {
          src: "/clinic/corridor.jpg",
          alt: "Two colleagues in a clinic corridor",
          caption: "Bristol, the fortnight that started it",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow above the heading, rendered through Badge23
headingstringLetter heading, capped at max-w-2xl
paragraphsstring[][]Body paragraphs in reading order
pullQuotestringAccent-ruled quote after the body
signatoriesSignatory[][]Avatar bylines signing the letter off
portraitsPortrait[][]Captioned photographs in the side column
classNamestringExtra classes for the outer section
ts
type Signatory = {
  name: string;
  role: string;
  avatar: { src: string; alt: string };
};

type Portrait = {
  src: string;
  alt: string;
  caption: string;
};

Behavior notes

More About blocks

View all About
PRO

about67

Founder Statement

Founder statement with a large blockquote followed by an avatar, name, role, and a monospace signature line.

PRO

about15

Letter from the CEO

Editorial-style open letter with paragraphs, a personal signature with avatar, and a call-to-action. Great for founder stories.

PRO

about45

Founder Quote About

A founder-led pull-quote about with a portrait, signature and a facts strip.

PRO

about4

Founder Quote & Team

Founder blockquote with avatar, followed by a horizontal team member row. Ideal for leadership pages and company introductions.

PRO

about49

Founder Statement About

About built around a dark founder portrait card with a pull-quote, signature, and supporting stats.

PRO

about6

Numbered Principles

Asymmetric two-column layout with heading on the left and numbered company principles on the right. Clean and editorial.