Waitlist Signup Counter

Waitlist Open

Ship your first release on Halo the day we open.

Halo turns your repo into a live product page in minutes. Reserve a seat now and get founder pricing locked for as long as you stay.

No spam. Unsubscribe in a single click.

Waitlist member portraitWaitlist member portraitWaitlist member portraitWaitlist member portraitWaitlist member portrait

3,412 builders already in line

About this block

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

  • The email form owns its own state and swaps 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 heading is rendered through dangerouslySetInnerHTML, so an inline <strong> is honored and styled in text-primary; every other string is plain text with no markup parsing.
  • The rounded form is a single bordered pill with a transparent <input> and a square accent submit button carrying an ArrowRight icon; the privacy line renders only before submit.
  • The social-proof row renders whenever avatars or count is set, with avatars as a -space-x-3 overlapping stack of plain <img> elements and the bold count sitting before labels.countCaption.
  • Everything is centered in a max-w-3xl column; the eyebrow, heading, description, form, privacy note, avatars, and count each render only when their prop or label is present.

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

comingsoon73

Sign The Wall Waitlist

An interactive waitlist coming-soon section with a monospace parenthetical eyebrow, a heading, a name and email form, and a live wall of member name chips that prepends your own entry on submit.