Letter from the CEO
Editorial-style open letter with paragraphs, a personal signature with avatar, and a call-to-action. Great for founder stories.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its button, avatar, avatar-initials dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/letter-from-the-ceo.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/about/about15.tsx instead.
Usage
The file also exports about15Demo, 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 { About15, about15Demo } from "@/components/blocks/about/about15"; export default function Page() { return <About15 {...about15Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | undefined | Small label above the heading, e.g. "A letter from our CEO". |
| heading | string | none | Letter's title. |
| paragraphs | string[] | none | Body paragraphs; the first renders larger and in the foreground color, the rest muted. |
| signature | Signature | none | Name, role, and optional avatar shown as the letter's sign-off. |
| buttons | ButtonItem[] | [] | Optional CTA buttons below a top border, separate from the letter body. |
| className | string | none | Extra classes for the outer section element. |
Types
type Signature = { name: string; role: string; avatar?: { src: string; alt: string }; }; type ButtonItem = { label: string; href?: string; variant?: "default" | "secondary" | "outline" | "ghost" | "link" | "destructive"; };
Behavior notes
- The content column is capped narrower (max-w-2xl) than most other About blocks, deliberately reading like a single-column letter rather than a marketing section.
- Only the first paragraph gets foreground/text-lg treatment as a lede; every paragraph after that is muted body text, unlike About4's blockquote which treats its single quote as the entire focal point.
- buttons are optional and, when present, sit below a top border separating them from the letter itself, so the CTA never reads as part of the CEO's voice.
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.