A waitlist coming-soon section with a monospace parenthetical eyebrow, a heading, a working email notify form, and a three-step numbered process explaining what happens after signing up.
A monochrome Auralis waitlist section (oversized editorial type, a monospace parenthetical eyebrow) that centers a badge, a heading, and a description over a working email notify form, then explains the wait with a three-step numbered process below.
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/comingsoon65?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon65?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/comingsoon65.tsx.
The installed file exports comingsoon65Demo alongside the block: the exact props behind the preview above. Spread it to get a working waitlist page in one line.
import { ComingSoon65, comingsoon65Demo } from "@/components/beste/block/comingsoon65";
export default function Page() {
return <ComingSoon65 {...comingsoon65Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { ComingSoon65 } from "@/components/beste/block/comingsoon65";
export default function Page() {
return (
<ComingSoon65
badge={{ label: "How it works" }}
heading="Join the list, and here's exactly what happens next."
description="No mystery, no daily emails. Just three simple steps."
steps={[
{ title: "You join the list", description: "Drop your email and you're locked in for first access." },
{ title: "We build in the open", description: "A short note now and then as things take shape." },
{ title: "You get in first", description: "The day we open, your invite lands before the public link." },
]}
labels={{
placeholder: "you@studio.com",
success: "You're on the list. Step one, done.",
stepsCaption: "After you join",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | Badge | – | Eyebrow badge rendered above the heading via Badge7 |
labels | ComingSoon65Labels | {} | Form placeholder, success, and steps-caption strings |
heading | string | – | Invitation heading |
description | string | – | Supporting paragraph under the heading |
steps | StepItem[] | [] | Numbered process steps shown below the form |
className | string | – | Extra classes for the outer <section> |
type Badge = {
label: string;
};
type StepItem = {
title: string;
description: string;
};
type ComingSoon65Labels = {
placeholder?: string;
success?: string;
stepsCaption?: string;
};handleSubmit calls preventDefault and only flips to the success pill when the trimmed email is non-empty, so there is no external callback to wire.Check icon and the success string; the input is not restored without a reload.steps is non-empty, numbering each entry by its index plus one inside a solid bg-foreground circle.badge eyebrow and the stepsCaption render through Badge7, so they share the same monospace parenthetical treatment.Wiring the form up
The form ships with local state and a success message but no backend, so submissions are not sent anywhere until you connect one. Point handleSubmit at your own route handler or email platform, or wire in a form library. For a walkthrough of the options, see React Hook Form, TanStack Form, and Formisch.
comingsoon15
A centered pre-launch section with an eyebrow, a large light heading, a paragraph, an image tile holding a working email-capture form with a success state, and a social-proof note.
comingsoon73
An interactive waitlist coming-soon section with a monospace parenthetical eyebrow, a heading, a name and email form, and a live wall of member name chips that prepends your own entry on submit.
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.