Founder Note Waitlist
A centered coming-soon screen built around a short, personal note from the founder rather than generic marketing copy. A signature row below the note pairs the founder's avatar and title with a decorative dark call-to-action button.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its avatar, avatar-initials, button dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/founder-note-waitlist.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon44.tsx instead.
Usage
The file also exports comingsoon44Demo, 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 { ComingSoon44, comingsoon44Demo } from "@/components/blocks/coming-soon/comingsoon44"; export default function Page() { return <ComingSoon44 {...comingsoon44Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | "Coming soon" | Small label above the heading. |
| heading | string | "We're building this in the open" | Main heading. |
| paragraphs | string[] | none | Founder note, rendered as 2-3 separate paragraphs. |
| founder | { name: string; role: string; avatar?: { src: string; alt: string } } | none | Founder's name, title, and optional avatar photo (falls back to initials). |
| ctaLabel | string | "Join waitlist" | Label on the dark CTA button. |
| ctaHref | string | "#" | Link target for the CTA button. |
| className | string | none | Extra classes for the outer section element. |
Behavior notes
- Fully static Server Component: no client-side state anywhere in this block.
- The founder avatar falls back to initials (via AvatarFallback/initialsFromName) if no photo is supplied or the image fails to load.
- The "Join waitlist" button is a decorative link (`render={<Link href={ctaHref} />}`) styled with an inverted dark background, it does not submit or capture anything.
More Coming Soon Blocks
View all →countdown-timer-launch
Countdown Timer Launch
A centered launch page with a live days/hours/minutes/seconds countdown to a target date.
development-progress-milestones
Development Progress Milestones
A centered launch page with an overall progress bar and a milestone tracker list with status badges.
social-connect-launch
Social Connect Launch
A centered coming-soon page with pill-style outline buttons linking out to Twitter, GitHub, LinkedIn, and email.
animated-icons-preview
Animated Icons Preview
A centered coming-soon page with a row of bobbing icon tiles and a pulsing build-status indicator.
sneak-peek-feature-grid
Sneak Peek Feature Grid
A centered coming-soon page with a grid of blurred feature cards teased behind a lock icon overlay.
waitlist-with-avatars
Waitlist with Avatars
A centered coming-soon page with a working waitlist signup form, stacked subscriber avatars, and a live join count.