Founder Quote About

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

PRO

About45: Founder Quote About

A founder-led about section built around a large pull-quote with a left accent border, a name-and-role signature paired with a CTA, and a portrait with a caption on the right. A four-item facts strip spans the full width beneath, separated by vertical dividers on desktop.

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

Base UI flavor

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

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

Quick start

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

tsx
import { About45, about45Demo } from "@/components/beste/block/about45";

export default function AboutPage() {
  return <About45 {...about45Demo} />;
}

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

tsx
import { About45 } from "@/components/beste/block/about45";

export default function AboutPage() {
  return (
    <About45
      label="From the founder"
      quote="I started this company because <strong>every tool I tried made the work slower</strong>, not faster."
      signature={{ name: "Jordan Rivera", role: "Founder & CEO" }}
      button={{ label: "Read our story", href: "https://beste.co" }}
      image={{
        src: "https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?w=900&h=1125&fit=crop",
        alt: "Founder Jordan Rivera in the office",
      }}
      caption="Jordan at the studio, Austin"
      facts={[
        { value: "2018", label: "Company founded" },
        { value: "40+", label: "Team members" },
        { value: "12k", label: "Customers served" },
        { value: "4.8", label: "Average rating" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow badge text above the quote
quotestringPull-quote; supports inline <strong> for primary-colored highlights
signatureSignatureName and role shown under the quote
buttonActionLinkCTA rendered as a Button1, aligned opposite the signature
imageImageItemFounder portrait on the right
captionstringCaption text under the portrait
factsFactItem[][]Full-width strip of short facts below the two-column layout
classNamestringExtra classes for the outer <section>
ts
type Signature = { name: string; role: string };
type ActionLink = { label: string; href: string };
type ImageItem = { src: string; alt: string };
type FactItem = { value: string; label: string };

Behavior notes

More About blocks

View all About
PRO

about49

Founder Statement About

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

PRO

about4

Founder Quote & Team

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

PRO

about67

Founder Statement

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

PRO

about46

About Strip

An about intro followed by a horizontally scrollable strip mixing image, stat, quote and values cards.

PRO

about63

Studio Story Split

Image-led about split with a tall portrait, an offset statement heading, supporting copy, mono studio facts, and a seal CTA.

PRO

about51

Beliefs About

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