Launch Roadmap ColumnsPRO

A pre-launch roadmap laid out as three now-next-later columns with a monospace parenthetical eyebrow, a heading and changelog pill button on top, and ruled entry lists under each column header.

ComingSoon27: Launch Roadmap Columns

A monochrome, editorial pre-launch roadmap from the Auralis set that pairs a parenthetical eyebrow, a heading, a supporting paragraph, and a changelog pill button on top with three now-next-later columns beneath, each led by a badge header over a ruled list of entries.

Upgrade to Pro

Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.

Upgrade Now

Installation

Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/comingsoon27?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/comingsoon27?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/comingsoon27.tsx.

Quick start

The installed file exports comingsoon27Demo alongside the block: the exact props behind the preview above. Spread it to get a working roadmap in one line.

tsx
import { ComingSoon27, comingsoon27Demo } from "@/components/beste/block/comingsoon27";

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

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { ComingSoon27 } from "@/components/beste/block/comingsoon27";

export default function Page() {
  return (
    <ComingSoon27
      badge={{ label: "The plan" }}
      heading="What lands first, and what follows after."
      description="We build in the open, so you always know what's next."
      button={{ label: "Get the changelog", href: "/changelog" }}
      columns={[
        {
          title: "Shipping at launch",
          items: [
            { title: "The canvas editor", description: "Draft, arrange and publish in one place." },
            { title: "Shared libraries", description: "Bring your team's assets into every project." },
          ],
        },
        {
          title: "Weeks after",
          items: [
            { title: "Version history", description: "Step back to any point without losing work." },
          ],
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow badge rendered above the heading via Badge7
headingstringRoadmap heading in the header row
descriptionstringSupporting paragraph under the heading
buttonActionLinkChangelog link rendered via Button12 in the header row
columnsRoadmapColumn[][]Now-next-later columns, each with a badge header and a ruled entry list
classNamestringExtra classes for the outer <section>
ts
type Badge = {
  label: string;
};

type ActionLink = {
  label: string;
  href: string;
};

type RoadmapEntry = {
  title: string;
  description: string;
};

type RoadmapColumn = {
  title: string;
  items: RoadmapEntry[];
};

Behavior notes

More Coming Soon blocks

View all Coming Soon
PRO

comingsoon19

Pre-Launch Manifesto

A pre-launch manifesto section on a soft muted card with a monospace parenthetical eyebrow, a large statement heading, and a three-column ruled list of numbered building principles above a follow-along pill button.

PRO

comingsoon29

Upcoming Writing Grid

A newsletter-forward pre-launch section with a monospace parenthetical eyebrow, a heading and subscribe pill button on top, and a three-card grid of upcoming articles each with a kind label, title, and summary.

PRO

comingsoon32

Trusted By Waitlist

A centered pre-launch section with a monospace parenthetical eyebrow, a statement heading, a supporting paragraph, a waitlist pill button, and a captioned grayscale logo strip of early partners.

PRO

comingsoon49

Framed Editorial Launch

A two-column coming-soon section with a vertical monospace edge label, an oversized wordmark, a tagline and a working email notify form, beside a framed portrait image tile.

PRO

comingsoon7

Launch Roadmap Timeline

Coming soon section with a vertical timeline showing launch phases, dates, and status indicators. Perfect for communicating a clear release plan and keeping users informed about upcoming milestones.

PRO

comingsoon78

Public Roadmap Coming Soon

A pre-launch section that publishes remaining work instead of a date, with an image tile floating a live release tracker over hairline rows marked shipped, in testing, or queued.