Survey WaitlistPRO

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.

ComingSoon43: Survey Waitlist

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.

Upgrade Now

Installation

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

bash
npx shadcn add "https://ui.beste.co/r/comingsoon43?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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",
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringSquare eyebrow rendered above the heading via Badge6
labelsComingSoon43Labels{}Email placeholder and post-submit success message
headingstringCard heading
questionstringSingle-choice prompt shown above the options
optionsstring[][]Selectable radio options
classNamestringExtra classes for the outer <section>
ts
type ComingSoon43Labels = {
  placeholder?: string;
  success?: string;
};

Behavior notes

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.

More Coming Soon blocks

View all Coming Soon
PRO

comingsoon15

Waitlist Coming Soon

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.

PRO

comingsoon36

Countdown Clock Waitlist

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.

PRO

comingsoon21

Waitlist Signup Counter

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.

PRO

comingsoon61

Community Launch Waitlist

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.

PRO

comingsoon62

Course Enrollment Waitlist

An education coming-soon section with a square eyebrow, a course heading, a start/length/format details grid, a working waitlist email form, and a syllabus card listing numbered lessons.

PRO

comingsoon30

Interest Selector Waitlist

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.