Launch Readiness Progress
A centered launch-readiness panel on a soft muted card. A percentage counts up to a target value alongside an animated progress bar, a row of status badges shows where each workstream stands, and an email form lets visitors get notified at launch.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its badge dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/launch-readiness-progress.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon50.tsx instead.
Usage
The file also exports comingsoon50Demo, 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 { ComingSoon50, comingsoon50Demo } from "@/components/blocks/coming-soon/comingsoon50"; export default function Page() { return <ComingSoon50 {...comingsoon50Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| heading | string | "We're almost ready to launch" | Main heading. |
| description | string | "Our team is heads-down finishing the last few checks before we open the doors." | Supporting sentence under the heading. |
| targetPercent | number | 82 | The readiness percentage the counter animates up to on mount. |
| statuses | LaunchStatusItem[] | none | Build-status rows rendered as badges (label + done/in-progress/pending). |
| className | string | none | Extra classes for the outer section element. |
Types
export interface LaunchStatusItem { label: string; status: "done" | "in-progress" | "pending"; }
Behavior notes
- The percentage counter and progress bar are real client state: a useEffect interval steps the value up from 0 to targetPercent over about a second on mount, it does not re-measure any real backend readiness.
- The status badges are static, they just render whatever `statuses` array is passed in with no interactivity.
- The email form is a real controlled input with a submit handler that flips local state to a success message, nothing is sent over the network.
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.