Staaarter

Founder Statement

Founder statement section built around a large centered blockquote, followed by an avatar, name, role, and a small monospace signature line.

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-statement.json

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

Usage

The file also exports about67Demo, 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 { About67, about67Demo } from "@/components/blocks/about/about67";

export default function Page() {
  return <About67 {...about67Demo} />;
}

Props

PropTypeDefaultDescription
quotestringnoneThe founder's statement, rendered as a large centered blockquote.
founderFoundernoneName, role, optional avatar, and optional monospace signature line.
classNamestringnoneExtra classes for the outer section element.

Types

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

Behavior notes

  • Unlike About4 (Founder Quote & Team), which lays the avatar and name out in a horizontal row and follows with a team row below a border, About67 stacks the avatar above the name and role and has no team section at all, keeping the focus entirely on one person.
  • The blockquote text is a size step larger than About4's (text-3xl/text-4xl vs text-2xl/text-3xl), since with no team row to balance it the quote needs to carry more visual weight on its own.
  • founder.signatureLine is unique to this block among the catalog's founder-focused sections; when present it renders in font-mono below the name and role, reading like a signed note rather than a bio line.