Development Progress Milestones
A centered coming-soon screen showing an overall progress bar alongside a milestone tracker. Each milestone (Design, Backend, Frontend, Testing) is listed with a status badge, done, in progress, or upcoming, so visitors can see exactly how far along the build is.
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/development-progress-milestones.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon2.tsx instead.
Usage
The file also exports comingsoon2Demo, 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 { ComingSoon2, comingsoon2Demo } from "@/components/blocks/coming-soon/comingsoon2"; export default function Page() { return <ComingSoon2 {...comingsoon2Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | "Coming soon" | Small label above the heading. |
| heading | string | "We're building something new" | Main heading. |
| description | string | "Follow along as we ship..." | Supporting copy under the heading. |
| progress | number | none | Overall completion percentage (0-100) shown in the progress bar. |
| milestones | Milestone[] | none | Ordered list of milestone rows with a name and status. |
| className | string | none | Extra classes for the outer section element. |
Types
export type MilestoneStatus = "done" | "in-progress" | "upcoming"; export interface Milestone { name: string; status: MilestoneStatus; }
Behavior notes
- Fully static: the progress bar width and each milestone's badge variant are derived directly from props at render time, no client state.
- The `progress` value is clamped to the 0-100 range before being used as the bar's inline width so out-of-range props can't overflow the track.
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.
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.
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.