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.
A monochrome, editorial pre-launch countdown from the Auralis set that centers a parenthetical eyebrow, a bold wordmark, a heading, a live four-unit ruled countdown to a target date, and a reserve-seat pill button, all over a soft muted card.
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/comingsoon26?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon26?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/comingsoon26.tsx.
The installed file exports comingsoon26Demo alongside the block: the exact props behind the preview above. Spread it to get a working countdown card in one line.
import { ComingSoon26, comingsoon26Demo } from "@/components/beste/block/comingsoon26";
export default function Page() {
return <ComingSoon26 {...comingsoon26Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this. The targetDate is an ISO string:
import { ComingSoon26 } from "@/components/beste/block/comingsoon26";
export default function Page() {
return (
<ComingSoon26
badge={{ label: "Counting down" }}
wordmark="Auralis"
heading="The studio opens the moment the clock runs out."
targetDate="2026-10-24T09:00:00Z"
button={{ label: "Hold my seat", href: "/waitlist" }}
labels={{
daysLabel: "Days",
hoursLabel: "Hours",
minutesLabel: "Minutes",
secondsLabel: "Seconds",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Eyebrow badge rendered above the wordmark via Badge7 |
labels | ComingSoon26Labels | {} | Unit captions for the days, hours, minutes, and seconds columns |
wordmark | string | – | Bold wordmark shown under the eyebrow |
heading | string | – | Heading above the countdown |
targetDate | string | – | ISO date string the countdown ticks down to |
button | ActionLink | – | Reserve-seat link rendered via Button12 |
className | string | – | Extra classes for the outer <section> |
type Badge = {
label: string;
};
type ActionLink = {
label: string;
href: string;
};
type ComingSoon26Labels = {
daysLabel?: string;
hoursLabel?: string;
minutesLabel?: string;
secondsLabel?: string;
};useEffect parses targetDate, computes the remaining days, hours, minutes, and seconds, and refreshes every second via setInterval, clearing the timer on unmount.Math.max(0, target - Date.now()), so a past targetDate settles on 00 across all four units rather than going negative; each figure is zero-padded with padStart(2, "0").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:grid-cols-4 ruled row; each unit caption renders only when its label is set, and the eyebrow, wordmark, heading, and button each render only when their prop is present.bg-muted surface, and the heading and wordmark are plain text with no inline markup parsing, so HTML passed in shows as escaped text.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.
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.
comingsoon34
An invite-only pre-launch card on a soft muted surface with a monospace parenthetical eyebrow, a heading, a working invite-code redemption form with a success state, and a fallback waitlist pill button.
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.