Staaarter

Founder Quote & Team

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

By Staaarter Team
About
Docs
Live preview

Docs

Installation

A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its avatar, avatar-initials dependencies and any missing npm packages, and installs them straight into your project.

npx shadcn add https://staaarter.com/r/founder-quote-team.json

Prefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/about/about4.tsx instead.

Usage

The file also exports about4Demo, the exact props behind the preview above. Spread it to get a working section in one line, then replace it with your own data.

import { About4, about4Demo } from "@/components/blocks/about/about4";

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

Props

PropTypeDefaultDescription
quotestringnoneThe founder's blockquote, rendered large and centered.
founderPersonnoneName, role, and optional avatar shown under the quote.
teamPerson[][]Team row below the quote; hidden entirely when empty.
classNamestringnoneExtra classes for the outer section element.

Types

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

Behavior notes

  • The team row is wrapped in its own bordered, padded container and is omitted entirely (no empty border) when team is an empty array.
  • Both the founder avatar and every team avatar fall back to initials from the person's name when no avatar image is supplied, using the same Avatar primitive as every other About block.
  • There is no maximum team size; a long team array wraps onto additional lines rather than truncating or scrolling.