Coming Soon Notify Page
A centered coming-soon screen anchored by a plain-text brand wordmark and an accent-highlighted heading. Visitors can join the notify list through a working email form with a success state, and follow along via a row of social icon links below.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its button dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/coming-soon-notify-page.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon22.tsx instead.
Usage
The file also exports comingsoon22Demo, 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 { ComingSoon22, comingsoon22Demo } from "@/components/blocks/coming-soon/comingsoon22"; export default function Page() { return <ComingSoon22 {...comingsoon22Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| brand | string | "Acme" | Plain-text brand wordmark shown above the eyebrow. |
| eyebrow | string | "Coming soon" | Small label above the heading. |
| heading | ReactNode | none | Main heading, pass a `<span className="text-primary">` around the key word for the accent highlight. |
| launchNote | string | "We're aiming for a spring launch..." | Short supporting note shown under the email form. |
| socialLinks | SocialLink[] | none | Social links rendered as icon-only outline buttons. |
| className | string | none | Extra classes for the outer section element. |
Types
export interface SocialLink { label: string; href: string; icon: "twitter" | "github" | "linkedin"; }
Behavior notes
- The email form is real client state: typing updates a controlled input, and submitting swaps the form for a success message (useState only, nothing is sent over the network).
- Social links are real external anchors (`render={<a href={...} target="_blank" rel="noreferrer" />}`) with an `aria-label` per icon-only button, not decorative.
- The icon shown per social link is resolved from a fixed lookup map keyed by the link's `icon` string, never passed around as a component reference.
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.