An editorial launch-date announcement with a square eyebrow, a kicker, an oversized date headline paired with a supporting note and a dark seal remind-me button, above a three-column ruled list of launch facts.
An editorial launch-date announcement from the Polaris set that leads with a single accent color, pairing a square eyebrow and a kicker with an oversized date headline on the left and a supporting note plus a dark seal remind-me button on the right, above a three-column ruled list of launch facts.
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/comingsoon25?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon25?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/comingsoon25.tsx.
The installed file exports comingsoon25Demo alongside the block: the exact props behind the preview above. Spread it to get a working announcement in one line.
import { ComingSoon25, comingsoon25Demo } from "@/components/beste/block/comingsoon25";
export default function Page() {
return <ComingSoon25 {...comingsoon25Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { ComingSoon25 } from "@/components/beste/block/comingsoon25";
export default function Page() {
return (
<ComingSoon25
label="Launch Day"
heading="October 24"
description="Version one goes public with a live walkthrough and a launch-week offer."
button={{ label: "Remind Me", href: "/remind" }}
facts={[
{ value: "09:00 PT", label: "Live stream and open Q&A" },
{ value: "Version 1.0", label: "Our first public release" },
{ value: "30 days free", label: "For everyone who joins launch week" },
]}
labels={{ kicker: "The wait ends" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
label | string | – | Square eyebrow rendered via Badge6 |
labels | ComingSoon25Labels | {} | Holds the small kicker line shown above the date headline |
heading | string | – | Oversized launch-date headline |
description | string | – | Supporting note in the right-hand column |
button | ActionLink | – | Remind-me link rendered via Button1 with the dark tone |
facts | FactItem[] | [] | Launch facts laid out as a three-column ruled list |
className | string | – | Extra classes for the outer <section> |
type ActionLink = {
label: string;
href: string;
};
type FactItem = {
value: string;
label: string;
};
type ComingSoon25Labels = {
kicker?: string;
};Button1 asChild wrapping a Next.js <Link href={button.href} /> with the dark tone, so it always points at a URL.md:grid-cols-[1fr_auto] split that pins the kicker and date headline left and the note plus button right, with a bottom rule under the whole row.md:grid-cols-3, pairing each bold value with its label, and renders only when facts is non-empty.comingsoon1
Coming soon section with a live countdown timer showing days, hours, minutes, and seconds until launch. Perfect for product launches, event announcements, or building anticipation for new features.
comingsoon35
A centered launch-reminder section with a monospace parenthetical eyebrow, a kicker, an oversized launch-date heading, a supporting line, an add-to-calendar pill button, and a row of calendar-provider links.
comingsoon18
A full-bleed image pre-launch hero with a dark overlay, a monospace parenthetical eyebrow, a small kicker, an oversized launch-date headline, a supporting line, and a light outline pill notify button.
comingsoon42
A two-column podcast-launch section with an accent-badged square cover image beside a square eyebrow, show title, description, a dark seal subscribe button, platform links, and a ruled list of first episodes.