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.
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.
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
npx shadcn add "https://ui.beste.co/r/comingsoon27?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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." },
],
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Eyebrow badge rendered above the heading via Badge7 |
heading | string | – | Roadmap heading in the header row |
description | string | – | Supporting paragraph under the heading |
button | ActionLink | – | Changelog link rendered via Button12 in the header row |
columns | RoadmapColumn[] | [] | Now-next-later columns, each with a badge header and a ruled entry list |
className | string | – | Extra classes for the outer <section> |
type Badge = {
label: string;
};
type ActionLink = {
label: string;
href: string;
};
type RoadmapEntry = {
title: string;
description: string;
};
type RoadmapColumn = {
title: string;
items: RoadmapEntry[];
};button renders as a real navigation via Button12 asChild wrapping a Next.js <Link href={button.href} />, so it always points at a URL.md and up.title as a Badge7 header over a stack of ruled entries, and the whole grid collapses to md:grid-cols-3 and renders only when columns is non-empty.comingsoon19
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.
comingsoon29
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.
comingsoon32
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.
comingsoon49
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.