Staaarter

Launch Roadmap Columns

A centered coming-soon roadmap page. A monospace eyebrow and heading sit above a Changelog pill button, with three columns below, Now, Next, and Later, each showing a ruled list of roadmap entries so visitors can see what's shipping and what's still ahead.

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 button dependencies and any missing npm packages, and installs them straight into your project.

npx shadcn add https://staaarter.com/r/launch-roadmap-columns.json

Prefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon27.tsx instead.

Usage

The file also exports comingsoon27Demo, 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 { ComingSoon27, comingsoon27Demo } from "@/components/blocks/coming-soon/comingsoon27";

export default function Page() {
  return <ComingSoon27 {...comingsoon27Demo} />;
}

Props

PropTypeDefaultDescription
eyebrowstring"(coming soon)"Monospace parenthetical label above the heading.
headingstring"What we're shipping next"Main heading.
changelogHrefstring"#"Link target for the "Changelog" pill button.
columnsRoadmapColumn[]noneThree roadmap columns, each with a title and a ruled list of entries.
classNamestringnoneExtra classes for the outer section element.

Types

export interface RoadmapColumn {
  title: string;
  items: string[];
}

Behavior notes

  • Fully static server component: the "Changelog" pill button is a plain link (`render={<Link href={changelogHref} />}`), not wired to any real changelog page.
  • The Now/Next/Later columns are static, non-interactive ruled lists rendered directly from the `columns` prop.