Founder Quote & Team
Founder blockquote with avatar, followed by a horizontal team member row. Ideal for leadership pages and company introductions.
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.jsonPrefer 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
| Prop | Type | Default | Description |
|---|---|---|---|
| quote | string | none | The founder's blockquote, rendered large and centered. |
| founder | Person | none | Name, role, and optional avatar shown under the quote. |
| team | Person[] | [] | Team row below the quote; hidden entirely when empty. |
| className | string | none | Extra 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.
More About Blocks
View all →team-mission
Team & Mission
Two-column about section with mission statement, company stats, and team member grid.
values-with-team-photo
Values with Team Photo
Full-width photo with a three-column values grid below.
timeline-milestones
Timeline & Milestones
Company stats on the left and a vertical timeline of milestones on the right.
image-text-split
Image & Text Split
Tall image on the left, company story, inline stats, and CTAs on the right.
numbered-principles
Numbered Principles
Heading on the left and numbered company principles on the right.
team-cards-with-bios
Team Cards with Bios
Three-column grid of team member cards with avatars, roles, and short bios.