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.
A monochrome, editorial pre-launch manifesto from the Auralis set that sits on a soft muted card with a parenthetical eyebrow, a large statement heading, a supporting paragraph, a three-column ruled list of numbered building principles, and a follow-along pill button beneath.
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/comingsoon19?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon19?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/comingsoon19.tsx.
The installed file exports comingsoon19Demo alongside the block: the exact props behind the preview above. Spread it to get a working manifesto section in one line.
import { ComingSoon19, comingsoon19Demo } from "@/components/beste/block/comingsoon19";
export default function Page() {
return <ComingSoon19 {...comingsoon19Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { ComingSoon19 } from "@/components/beste/block/comingsoon19";
export default function Page() {
return (
<ComingSoon19
badge={{ label: "What we're building" }}
heading="Not another launch. A studio that stays out of your way."
description="We're taking our time so the first release earns its place."
principles={[
{
title: "Slow enough to be right",
description: "We ship a feature when it holds up under real work, not when a countdown says so.",
},
{
title: "Nothing to relearn",
description: "Every screen borrows from tools you already trust.",
},
{
title: "Yours to leave",
description: "Your files export in one click on day one. No lock-in.",
},
]}
button={{ label: "Follow the build", href: "/updates" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Eyebrow badge rendered above the heading via Badge7 |
heading | string | – | Large statement heading in the intro column |
description | string | – | Supporting paragraph under the heading |
principles | PrincipleItem[] | [] | Numbered building principles laid out as a three-column ruled list |
button | ActionLink | – | Follow-along link rendered via Button12 |
className | string | – | Extra classes for the outer <section> |
type Badge = {
label: string;
};
type ActionLink = {
label: string;
href: string;
};
type PrincipleItem = {
title: string;
description: string;
};button renders as a real navigation via Button12 asChild wrapping a Next.js <Link href={button.href} />, so it always points at a URL.String(index + 1).padStart(2, "0"), so numbering comes from list order rather than a prop.principles is non-empty, collapsing to md:grid-cols-3 with a top rule on each entry; the eyebrow, heading, description, and button each render only when their prop is present.bg-muted card, and every string is plain text with no inline markup parsing, so HTML passed in shows as escaped text.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.
comingsoon26
A pre-launch countdown on a soft muted card with a monospace parenthetical eyebrow, a bold wordmark, a heading, a live four-unit ruled countdown to a target date, and a reserve-seat pill button.
comingsoon50
A coming-soon section on a soft muted card with a monospace parenthetical eyebrow, a heading, a launch-readiness percentage that counts up with an animated progress bar, a build-status row, and a working email notify form.
comingsoon61
A community coming-soon section on a soft muted card with a monospace parenthetical eyebrow, a heading, a working email waitlist form, a secondary outline community pill button, and an avatar row with a member count.