Waitlist with Avatars
A centered coming-soon screen combining social proof with a real signup form. Overlapping subscriber avatars sit next to a live join count, and submitting the email form flips to a success state while incrementing the count by one.
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/waitlist-with-avatars.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon6.tsx instead.
Usage
The file also exports comingsoon6Demo, 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 { ComingSoon6, comingsoon6Demo } from "@/components/blocks/coming-soon/comingsoon6"; export default function Page() { return <ComingSoon6 {...comingsoon6Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | "Coming soon" | Small label above the heading. |
| heading | string | "Join the waitlist" | Main heading. |
| description | string | "Be the first to know when we launch..." | Supporting copy under the heading. |
| subscribers | WaitlistSubscriber[] | none | Subscribers shown as overlapping avatars. |
| joinCount | number | none | Initial number of people who've already joined, shown next to the avatars. |
| className | string | none | Extra classes for the outer section element. |
Types
export interface WaitlistSubscriber { name: string; avatarSrc?: string; }
Behavior notes
- The email form is real client state: submitting it sets a `submitted` flag that swaps the form for a success message, and increments the displayed join count by one in the same handler, seeded from the `joinCount` prop.
- Avatars fall back to initials (via `initialsFromName`) when no `avatarSrc` is provided, same pattern as the About team blocks.
- No network request is made anywhere, this is a local-state-only simulation of a signup.
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.
launch-roadmap-timeline
Launch Roadmap Timeline
A centered coming-soon page with a vertical timeline of launch phases, each with a date, name, and status badge.