A centered post-signup confirmation card on a soft muted surface with a monospace parenthetical eyebrow, an oversized queue-position number, a progress-to-front bar, and a referral row with a copy-invite pill button.
A monochrome, editorial post-signup confirmation card from the Auralis set that centers a parenthetical eyebrow, a reassuring heading, an oversized queue-position number, a progress-to-front bar, and a referral row with a copy-invite pill button, all over a soft muted surface.
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/comingsoon17?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon17?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/comingsoon17.tsx.
The installed file exports comingsoon17Demo alongside the block: the exact props behind the preview above. Spread it to get a working confirmation card in one line.
import { ComingSoon17, comingsoon17Demo } from "@/components/beste/block/comingsoon17";
export default function Page() {
return <ComingSoon17 {...comingsoon17Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { ComingSoon17 } from "@/components/beste/block/comingsoon17";
export default function Page() {
return (
<ComingSoon17
badge={{ label: "You're in" }}
heading="Reserved. Now let's move you toward the front."
position="482"
progress={68}
inviteLink="/waitlist?ref=you"
labels={{
positionCaption: "Your place in line",
progressNote: "You've moved past 6,318 people already.",
referralNote: "Every maker who joins on your link lifts you 40 places.",
copyLabel: "Copy invite link",
copiedLabel: "Link copied",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Eyebrow badge rendered above the heading via Badge7 |
labels | ComingSoon17Labels | {} | Position caption, progress note, referral note, and copy button label strings |
heading | string | – | Confirmation heading under the eyebrow |
position | string | – | Oversized queue-position number, prefixed with a muted # |
progress | number | 0 | Progress-to-front percentage, clamped to the 0 to 100 range |
inviteLink | string | – | URL copied to the clipboard by the referral button |
className | string | – | Extra classes for the outer <section> |
type Badge = {
label: string;
};
type ComingSoon17Labels = {
positionCaption?: string;
progressNote?: string;
referralNote?: string;
copyLabel?: string;
copiedLabel?: string;
};copied state: handleCopy writes inviteLink to the clipboard via navigator.clipboard and flips the Button12 label from copyLabel to copiedLabel, so there is no external callback to wire.Button12 with a Copy icon fired by onClick; there is no email form here, so this card is meant to render after signup.progress value is clamped with Math.max(0, Math.min(100, progress)) and drives the bar width inline, which animates via a transition-[width] class.bg-muted surface in a max-w-3xl column, and every string is plain text with no inline markup parsing, so HTML passed in shows as escaped text.comingsoon21
A centered waitlist section with a square eyebrow, a bold accent-highlighted heading, a working rounded email-capture form with a success state, and an avatar row with a live signup counter.
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.
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.
comingsoon36
A centered pre-launch section with a square eyebrow, an accent-highlighted heading, a large colon-separated live countdown clock, a working email-capture form with a success state, and an avatar social-proof row.