Founder Statement

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

PRO

About67: Founder Statement

Founder statement section: an eyebrow badge and heading above a large blockquote, followed by a circular avatar, the founder's name and role, and an optional signature line. Built for a single, quotable "why we started this" moment rather than a full bio.

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.

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

Base UI flavor

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

This installs the block to components/beste/block/about67.tsx, the badge7 component it uses for the eyebrow badge, and its dependencies.

Quick start

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

tsx
import { About67, about67Demo } from "@/components/beste/block/about67";

export default function AboutPage() {
  return <About67 {...about67Demo} />;
}

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

tsx
import { About67 } from "@/components/beste/block/about67";

export default function AboutPage() {
  return (
    <About67
      badge={{ label: "From the founder" }}
      labels={{ signoff: "Written at the desk where it all began" }}
      heading="Why we started this <strong>studio</strong>."
      quote="I spent a decade watching good ideas flattened into templates, so we built a place where restraint could be the loudest choice in the room."
      founder={{
        name: "Jordan Lee",
        role: "Founder & Creative Director",
        avatar: {
          src: "https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?w=200&h=200&fit=crop",
          alt: "Portrait of Jordan Lee",
        },
      }}
    />
  );
}

Props

PropTypeDefaultDescription
badgeBadgeEyebrow badge above the heading
labelsAbout67Labels{}Small strings around the founder block
headingstringSection heading; supports inline <strong> for muted emphasis
quotestringLarge blockquote text; plain text, not HTML
founderAbout67FounderName, role, and avatar shown under the quote
classNamestringExtra classes for the outer <section>
ts
type Badge = { label: string };
type About67Labels = { signoff?: string };
type About67Founder = { name: string; role: string; avatar: { src: string; alt: string } };

Behavior notes

More About blocks

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

about45

Founder Quote About

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

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

about23

Story, Image & Team Row

Two-column layout with company story, stats, and leadership quote on the left, team photo and avatar row on the right.

PRO

about57

Values And Mission Statement

Two centered statements on a dark surface, each with an accent heading, an uppercase paragraph, and a small label beneath.