Staaarter

Founder Quote About

A large rectangular founder portrait sits beside a pull-quote, a plain-text signature line, and a small strip of company facts such as founded year, HQ, and team size.

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 media-slot dependencies and any missing npm packages, and installs them straight into your project.

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

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

Usage

The file also exports about45Demo, 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 { About45, about45Demo } from "@/components/blocks/about/about45";

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

Props

PropTypeDefaultDescription
quotestringnoneFounder pull-quote.
founderFoundernoneName and role shown as the signature line under the quote.
portraitMediaSlotImageundefinedRectangular founder portrait; falls back to a placeholder via MediaSlot.
factsFact[]noneSmall label/value facts strip below a top border; the strip is skipped entirely when the array is empty.
classNamestringnoneExtra classes for the outer section element.

Types

type Founder = { name: string; role: string };

type Fact = { label: string; value: string };

Behavior notes

  • Unlike About4, which pairs its quote with a circular Avatar and an optional team grid, this block uses a full rectangular MediaSlot portrait beside the quote and has no team roster at all, replacing it with a facts strip instead.
  • The signature under the quote is plain text (name plus role), not an Avatar or avatar-initials fallback, so this block has no avatar dependency despite being a founder/people-focused layout.
  • facts renders as a flex-wrapped row of label/value pairs above a top border, distinct from About13's dl of company details, which lives in its own bordered box beside the story rather than under a quote.