Founder Quote & Team

Meet the Team

The people behind the product

A diverse group of thinkers, makers, and problem solvers building tools that developers actually enjoy using.

We set out to prove that beautiful, accessible design does not have to be complicated. Five years later, our community of builders has turned that belief into reality every single day.
SC

Sarah Chen

CEO & Co-Founder

MJ

Marcus Johnson

CTO & Co-Founder

ER

Elena Rodriguez

Head of Design

DK

David Kim

Head of Engineering

AP

Aisha Patel

Head of Product

JW

James Wright

Lead Developer

MT

Mei Tanaka

Design Lead

About this block

Founder Quote & TeamPRO

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

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.

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/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

  • The team grid is fixed at grid-cols-2 sm:grid-cols-3 lg:grid-cols-6 regardless of how many members are passed. The demo ships exactly 6 members so the row fills evenly, but a count that isn't a multiple of 6 leaves a visibly short last row rather than rebalancing to a different column count.
  • Avatar fallback initials are computed by splitting name on spaces and joining the first letter of each part, so it works for any number of name segments, not just a first and last name.
  • The founder panel only renders when founder is passed; there is no default founder object if it's omitted.
  • A founder's avatar is independently optional: without it, only the name and role text render next to the quote.

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

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.