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.
A centered waitlist section from the Polaris set that leads with a square eyebrow and a single accent color, pairing a bold accent-highlighted heading and a supporting paragraph with a working rounded email-capture form and its success state, then closing on an avatar row and a live signup counter.
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/comingsoon21?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon21?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/comingsoon21.tsx.
The installed file exports comingsoon21Demo alongside the block: the exact props behind the preview above. Spread it to get a working waitlist section in one line.
import { ComingSoon21, comingsoon21Demo } from "@/components/beste/block/comingsoon21";
export default function Page() {
return <ComingSoon21 {...comingsoon21Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { ComingSoon21 } from "@/components/beste/block/comingsoon21";
export default function Page() {
return (
<ComingSoon21
label="Waitlist Open"
heading="Ship your first release on <strong>Halo</strong> the day we open."
description="Reserve a seat now and get founder pricing locked for as long as you stay."
count="3,412"
avatars={[
{ src: "/people/one.jpg", alt: "Waitlist member" },
{ src: "/people/two.jpg", alt: "Waitlist member" },
]}
labels={{
countCaption: "builders already in line",
placeholder: "Enter your work email",
success: "You're in. Watch your inbox for your invite.",
privacy: "No spam. Unsubscribe in a single click.",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
label | string | – | Square eyebrow rendered via Badge6 |
labels | ComingSoon21Labels | {} | Count caption plus the form placeholder, success, and privacy strings |
heading | string | – | Bold heading; honors an inline <strong> styled in the accent color |
description | string | – | Supporting paragraph under the heading |
count | string | – | Live signup figure shown in bold before the caption |
avatars | AvatarItem[] | [] | Overlapping avatar stack shown as social proof |
className | string | – | Extra classes for the outer <section> |
type ComingSoon21Labels = {
countCaption?: string;
placeholder?: string;
success?: string;
privacy?: string;
};
type AvatarItem = {
src: string;
alt: string;
};handleSubmit calls preventDefault and only flips when the trimmed email is non-empty, so there is no external callback to wire.heading is rendered through dangerouslySetInnerHTML, so an inline <strong> is honored and styled in text-primary; every other string is plain text with no markup parsing.<input> and a square accent submit button carrying an ArrowRight icon; the privacy line renders only before submit.avatars or count is set, with avatars as a -space-x-3 overlapping stack of plain <img> elements and the bold count sitting before labels.countCaption.max-w-3xl column; the eyebrow, heading, description, form, privacy note, avatars, and count each render only when their prop or label is present.Wiring the form up
The waitlist 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.
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.
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.
comingsoon6
Coming soon section with an email waitlist input, stacked subscriber avatars, and a live join count. Perfect for building early traction and social proof before launch.
comingsoon45
A centered pre-launch section with a square eyebrow, a heading, a supporting line, a row of accent statistics that count up when scrolled into view, and a dark seal claim-seat button.