Community Launch Waitlist
A centered coming-soon screen for a community that's about to launch, framed on a soft muted card. Includes a monospace eyebrow, heading, a working email-waitlist form with a confirmation state, a secondary decorative "Join the community" pill button, and a stacked avatar row with a static member count.
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/community-launch-waitlist.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon61.tsx instead.
Usage
The file also exports comingsoon61Demo, 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 { ComingSoon61, comingsoon61Demo } from "@/components/blocks/coming-soon/comingsoon61"; export default function Page() { return <ComingSoon61 {...comingsoon61Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | "(coming soon)" | Monospace label above the heading. |
| heading | string | "Our community is launching soon" | Main heading. |
| description | string | "Join the waitlist to get early access..." | Supporting copy under the heading. |
| members | CommunityMember[] | none | Members rendered as a stacked avatar row. |
| memberCountLabel | string | "2,400+ members waiting" | Caption under the avatar row. |
| joinButtonLabel | string | "Join the community" | Label for the secondary outline pill button. |
| className | string | none | Extra classes for the outer section element. |
Types
interface CommunityMember { name: string; image?: { src: string; alt: string }; }
Behavior notes
- The email field and submit are real client state (useState): submitting swaps the form for a confirmation message, nothing is sent to a server.
- The "Join the community" pill button is purely decorative, it has no onClick handler and does not affect the waitlist form.
- Members fall back to initials (via AvatarFallback/initialsFromName) when no `image` is supplied per entry, and the member-count caption is a static string, not a live count.
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.