Founder Statement About

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

PRO

About49: Founder Statement About

A single dark card split into a founder portrait on one side and a pull-quote with a signature line, stat trio, and CTA on the other, all inside one bg-foreground panel rather than a plain section background.

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

Base UI flavor

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

This installs the block to components/beste/block/about49.tsx, the badge6 and button1 components it uses for the eyebrow label and CTA button, and its dependencies.

Quick start

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

tsx
import { About49, about49Demo } from "@/components/beste/block/about49";

export default function AboutPage() {
  return <About49 {...about49Demo} />;
}

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

tsx
import { About49 } from "@/components/beste/block/about49";

export default function AboutPage() {
  return (
    <About49
      label="Why we started"
      quote="Most companies sell hours. We wanted to sell <strong>outcomes you could measure</strong>."
      founder={{ name: "Amara Boateng", role: "Founder & CEO" }}
      image={{
        src: "https://images.unsplash.com/photo-1617791291756-582b2dce0b3e?w=800&h=1000&fit=crop",
        alt: "Amara Boateng, founder, in the office",
      }}
      button={{ label: "Read the story", href: "https://beste.co" }}
      stats={[
        { value: "2019", label: "Founded in Lagos" },
        { value: "80+", label: "Products shipped" },
        { value: "6", label: "Senior people" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow badge text above the quote
quotestringPull-quote; supports inline <strong> for primary-colored highlights
founderFounderName and role shown under the quote with a short accent line
imageImageItemFounder portrait filling the left/first column
buttonActionLinkCTA rendered as a Button1 at the bottom of the panel
statsStatItem[][]Three-column stat row above the button
classNamestringExtra classes for the outer <section>
ts
type Founder = { name: string; role: string };
type ImageItem = { src: string; alt: string };
type ActionLink = { label: string; href: string };
type StatItem = { value: string; label: string };

Behavior notes

More About blocks

View all About
PRO

about45

Founder Quote About

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

PRO

about67

Founder Statement

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

PRO

about4

Founder Quote & Team

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

PRO

about42

Framed Studio Card

About composed inside a bordered studio card with header marks, portrait and a stats strip.

PRO

about58

About Statement Card

About section on a soft muted card with a monospace parenthetical eyebrow, a bold studio wordmark, a large centered statement, a logos strip, and a four-column stats band.

PRO

about51

Beliefs About

A statement heading over a belief list punctuated by intermittent inline thumbnails.