Interest Selector Waitlist

A calm, light-filled studio workspace
(Tell us who you are)

Join the list, and we'll only send what fits your work.

A few taps now means every note you get from us lands close to what you actually do.

Pick what you're here for

We only use this to send you the right updates. Nothing else.

About this block

Interest Selector WaitlistPRO

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.

ComingSoon30: Interest Selector Waitlist

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.

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/comingsoon30?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

Quick start

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.

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

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

Props

PropTypeDefaultDescription
badge{ label: string }Parenthetical eyebrow rendered over the image via Badge7 in a light tone
labelsComingSoon30Labels{}Interests caption plus the form placeholder, success, and privacy strings
headingstringSection heading in light text
descriptionstringSupporting paragraph under the heading
interestsstring[][]Toggleable interest chips shown above the form
imageImageItemFull-bleed background image behind the dark overlay
classNamestringExtra classes for the outer <section>
ts
type ComingSoon30Labels = {
  interestsCaption?: string;
  placeholder?: string;
  success?: string;
  privacy?: string;
};

type ImageItem = {
  src: string;
  alt: string;
};

Behavior notes

  • The email form owns its input state and swaps the whole chips-and-form region to a success panel on submit; handleSubmit calls preventDefault and only flips when the trimmed email is non-empty, so there is no external callback to wire.
  • The interest chips are local toggle buttons tracked by index in component state with aria-pressed; selecting them restyles the chip but has no effect on submission and is not sent anywhere.
  • The 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.
  • Every region is optional: the eyebrow, heading, description, chips, and privacy note each render only when their prop or label is present.
  • The chips row, form, and privacy note are all hidden once the form is submitted, leaving only the centered success panel.
  • Every string is plain text with no inline markup parsing, so HTML passed in shows as escaped text.

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

comingsoon16

Image Split Waitlist

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.

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

comingsoon32

Trusted By Waitlist

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.

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.