Waitlist Signup CounterPRO

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.

ComingSoon21: Waitlist 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.

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

Base UI flavor

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

Quick start

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.

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

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

Props

PropTypeDefaultDescription
labelstringSquare eyebrow rendered via Badge6
labelsComingSoon21Labels{}Count caption plus the form placeholder, success, and privacy strings
headingstringBold heading; honors an inline <strong> styled in the accent color
descriptionstringSupporting paragraph under the heading
countstringLive signup figure shown in bold before the caption
avatarsAvatarItem[][]Overlapping avatar stack shown as social proof
classNamestringExtra classes for the outer <section>
ts
type ComingSoon21Labels = {
  countCaption?: string;
  placeholder?: string;
  success?: string;
  privacy?: string;
};

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

Behavior notes

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.

More Coming Soon blocks

View all Coming Soon
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

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

comingsoon6

Waitlist with Avatars

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.

PRO

comingsoon45

Animated Waitlist Stats

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.

PRO

comingsoon43

Survey Waitlist

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.

PRO

comingsoon65

What Happens Next Waitlist

A waitlist coming-soon section with a monospace parenthetical eyebrow, a heading, a working email notify form, and a three-step numbered process explaining what happens after signing up.