Staaarter

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.

By Staaarter Team
Coming Soon
Docs
Live preview

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.json

Prefer 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

PropTypeDefaultDescription
eyebrowstring"Coming soon"Small label above the heading.
headingstring"Our launch roadmap"Main heading.
descriptionstring"Here's what we're shipping on the way to launch day."Supporting copy under the heading.
phasesRoadmapPhase[]noneOrdered list of roadmap phases rendered as timeline entries.
classNamestringnoneExtra 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.