Founder Quote & Team

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

PRO

About4: Founder Quote & Team

About section built around a single founder blockquote, complete with a large quote icon and avatar, followed by a compact horizontal grid of team member avatars and roles. There are no bios here; pair it with About7 when a longer per-person description is needed.

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

Base UI flavor

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

This installs the block to components/beste/block/about4.tsx, along with the shadcn/ui badge, button, and avatar components it depends on.

Quick start

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

tsx
import { About4, about4Demo } from "@/components/beste/block/about4";

export default function AboutPage() {
  return <About4 {...about4Demo} />;
}

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

tsx
import { About4 } from "@/components/beste/block/about4";

export default function AboutPage() {
  return (
    <About4
      badge={{ label: "Meet the Team", variant: "secondary" }}
      heading="The people behind the product"
      description="A diverse group of thinkers, makers, and problem solvers."
      founder={{
        quote: "We set out to prove that beautiful, accessible design does not have to be complicated.",
        name: "Sarah Chen",
        role: "CEO & Co-Founder",
        avatar: { src: "https://images.unsplash.com/photo-1602668573961-452caa3c827d?w=300&fit=crop", alt: "Sarah Chen" },
      }}
      team={[
        { name: "Marcus Johnson", role: "CTO & Co-Founder" },
        { name: "Elena Rodriguez", role: "Head of Design" },
        { name: "David Kim", role: "Head of Engineering" },
      ]}
      buttons={[{ label: "View All Team", href: "https://beste.co" }]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Small label above the heading
headingstringSection heading
descriptionstringIntro paragraph under the heading
founderFounderQuoteBlockquote panel with quote, name, role, and avatar
teamTeamMember[][]Team member row rendered below the founder quote
buttonsButtonItem[][]CTA row at the bottom
classNamestringExtra classes for the outer <section>
ts
type FounderQuote = {
  quote: string;
  name: string;
  role: string;
  avatar?: { src: string; alt: string };
};

type TeamMember = {
  name: string;
  role: string;
  avatar?: { src: string; alt: string };
};

type ButtonItem = {
  label: string;
  href?: string;
  variant?: "default" | "secondary" | "outline" | "ghost" | "link" | "destructive";
};

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

about45

Founder Quote About

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

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

about49

Founder Statement About

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

PRO

about20

Team Photo & List

Wide team photo, member list with avatars, team stats grid, and a culture quote. A rich team showcase layout.

PRO

about13

Company Profile

Asymmetric layout with company story and image on the left, and a vertical list of company details on the right. Great for press and investor pages.