Launch Roadmap Timeline
A centered coming-soon screen laying out the path to launch as a vertical timeline. Each phase shows its target date, name, a short description, and a status badge (done, in progress, or upcoming), connected by a centered rail and dot.
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-roadmap-timeline.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon7.tsx instead.
Usage
The file also exports comingsoon7Demo, 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 { ComingSoon7, comingsoon7Demo } from "@/components/blocks/coming-soon/comingsoon7"; export default function Page() { return <ComingSoon7 {...comingsoon7Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | "Coming soon" | Small label above the heading. |
| heading | string | "Our launch roadmap" | Main heading. |
| description | string | "Here's what we're shipping on the way to launch day." | Supporting copy under the heading. |
| phases | RoadmapPhase[] | none | Ordered list of roadmap phases rendered as timeline entries. |
| className | string | none | Extra classes for the outer section element. |
Types
export type RoadmapPhaseStatus = "done" | "in-progress" | "upcoming"; export interface RoadmapPhase { date: string; name: string; description: string; status: RoadmapPhaseStatus; }
Behavior notes
- Fully static: the timeline is plain HTML/CSS with no client state, each phase's badge variant is derived directly from its `status` prop.
- The connecting rail and dot both live inside the same `flex justify-center` grid rail column so they stay centered on each other regardless of border width, avoiding manual pixel-offset positioning.
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.