A centered full-bleed image waitlist section with a dark overlay and light text, a monospace parenthetical eyebrow, a heading, a set of toggleable interest chips, and a working rounded email-capture form with a success state.
A monochrome, editorial full-bleed image waitlist section with a dark overlay and light text, centering a parenthetical eyebrow, a heading, a supporting line, a set of toggleable interest chips, and a working rounded email-capture form that swaps to a success state.
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/comingsoon30?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon30?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/comingsoon30.tsx.
The installed file exports comingsoon30Demo alongside the block: the exact props behind the preview above. Spread it to get a working waitlist page in one line.
import { ComingSoon30, comingsoon30Demo } from "@/components/beste/block/comingsoon30";
export default function Page() {
return <ComingSoon30 {...comingsoon30Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { ComingSoon30 } from "@/components/beste/block/comingsoon30";
export default function Page() {
return (
<ComingSoon30
badge={{ label: "Tell us who you are" }}
heading="Join the list, and we'll only send what fits your work."
description="A few taps now means every note lands close to what you actually do."
interests={["Brand & identity", "Product design", "Motion", "Writing"]}
image={{ src: "/studio.jpg", alt: "A calm, light-filled studio workspace" }}
labels={{
interestsCaption: "Pick what you're here for",
placeholder: "you@studio.com",
success: "You're in. We'll shape your first email around what you chose.",
privacy: "We only use this to send you the right updates. Nothing else.",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Parenthetical eyebrow rendered over the image via Badge7 in a light tone |
labels | ComingSoon30Labels | {} | Interests caption plus the form placeholder, success, and privacy strings |
heading | string | – | Section heading in light text |
description | string | – | Supporting paragraph under the heading |
interests | string[] | [] | Toggleable interest chips shown above the form |
image | ImageItem | – | Full-bleed background image behind the dark overlay |
className | string | – | Extra classes for the outer <section> |
type ComingSoon30Labels = {
interestsCaption?: string;
placeholder?: string;
success?: string;
privacy?: string;
};
type ImageItem = {
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.aria-pressed; selecting them restyles the chip but has no effect on submission and is not sent anywhere.image renders as a plain <img> absolutely positioned behind a fixed bg-foreground/75 overlay, and the eyebrow, heading, and description sit in light text over it.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.
comingsoon16
A two-column pre-launch section with a monospace parenthetical eyebrow, an oversized headline, a working rounded email-capture form with a success state, an avatar social-proof row, and a tall full-bleed image carrying a floating launch label.
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.
comingsoon43
A pre-launch survey card with a square eyebrow, a heading, a single-choice question with selectable radio options, and a working rounded email-capture form with a success state.