Founder Statement
Founder statement section built around a large centered blockquote, followed by an avatar, name, role, and a small monospace signature line.
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.jsonPrefer 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
| Prop | Type | Default | Description |
|---|---|---|---|
| quote | string | none | The founder's statement, rendered as a large centered blockquote. |
| founder | Founder | none | Name, role, optional avatar, and optional monospace signature line. |
| className | string | none | Extra 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.
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.
founder-quote-team
Founder Quote & Team
Founder blockquote with avatar, followed by a horizontal team member row.
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.