Image Split Waitlist
A two-column coming-soon screen: the left side has a monospace eyebrow, an oversized headline, a working email waitlist form, and an avatar row for social proof. The right side is a tall full-bleed photo with a floating launch-date label overlaid near the bottom, hidden below the lg breakpoint.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its avatar, avatar-initials, media-slot dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/image-split-waitlist.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon16.tsx instead.
Usage
The file also exports comingsoon16Demo, 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 { ComingSoon16, comingsoon16Demo } from "@/components/blocks/coming-soon/comingsoon16"; export default function Page() { return <ComingSoon16 {...comingsoon16Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | "(coming soon)" | Monospace label above the heading. |
| heading | string | "The future of your workflow starts here" | Oversized main heading. |
| description | string | "Be first in line when we open the doors..." | Supporting copy under the heading. |
| avatars | WaitlistAvatar[] | none | Stacked avatars rendered above the social-proof note. |
| socialProofNote | string | "Join 800+ people already on the list" | Text next to the avatar stack. |
| image | MediaSlotImage | undefined | Photo filling the right-hand panel. |
| launchLabel | string | "Launching Spring 2026" | Text in the floating label overlaid on the photo. |
| className | string | none | Extra classes for the outer section element. |
Types
interface WaitlistAvatar { 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.
- Avatars fall back to initials (via AvatarFallback/initialsFromName) when no `image` is supplied per entry, same pattern as the chat blocks.
- The floating launch-date label and the photo itself are both static decoration, the photo panel is hidden below the lg breakpoint (hidden lg:block).
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.