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.
A Polaris 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 that swaps to a success state on submit.
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/comingsoon43?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon43?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/comingsoon43.tsx.
The installed file exports comingsoon43Demo alongside the block: the exact props behind the preview above. Spread it to get a working survey card in one line.
import { ComingSoon43, comingsoon43Demo } from "@/components/beste/block/comingsoon43";
export default function Page() {
return <ComingSoon43 {...comingsoon43Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { ComingSoon43 } from "@/components/beste/block/comingsoon43";
export default function Page() {
return (
<ComingSoon43
label="Help Us Build"
labels={{
placeholder: "Enter your email to send it",
success: "Thanks. Your answer helps us build the right thing first.",
}}
heading="One quick question before we launch."
question="What would make the biggest difference to your workflow?"
options={[
"Getting set up in under five minutes",
"Bringing my existing data with me",
"Working smoothly with my team",
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
label | string | – | Square eyebrow rendered above the heading via Badge6 |
labels | ComingSoon43Labels | {} | Email placeholder and post-submit success message |
heading | string | – | Card heading |
question | string | – | Single-choice prompt shown above the options |
options | string[] | [] | Selectable radio options |
className | string | – | Extra classes for the outer <section> |
type ComingSoon43Labels = {
placeholder?: string;
success?: string;
};role="radiogroup" where a useState selected index toggles the active styling on each role="radio" button; the choice is local only and is not submitted anywhere.handleSubmit calls preventDefault and only flips to the success panel when the trimmed email is non-empty, so there is no external callback to wire.bg-muted success panel with a Check badge and labels.success.question and the options grid each render only when their prop is set or non-empty, so the card degrades to just an email capture when you omit them.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.
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.
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.