Community Launch WaitlistPRO

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.

ComingSoon61: Community Launch Waitlist

An Auralis community coming-soon section on a soft muted card with a monospace parenthetical eyebrow, a heading, a description, a working email waitlist form, a secondary outline community pill button, and an avatar row with a member count.

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

Base UI flavor

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

This installs the block to components/beste/block/comingsoon61.tsx.

Quick start

The installed file exports comingsoon61Demo alongside the block: the exact props behind the preview above. Spread it to get a working community waitlist in one line.

tsx
import { ComingSoon61, comingsoon61Demo } from "@/components/beste/block/comingsoon61";

export default function Page() {
  return <ComingSoon61 {...comingsoon61Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { ComingSoon61 } from "@/components/beste/block/comingsoon61";

export default function Page() {
  return (
    <ComingSoon61
      badge={{ label: "The community" }}
      heading="A quiet corner for people who make things is opening."
      description="No feeds, no noise, just the makers you'd actually want to share a table with. Reserve your seat, or come say hello."
      avatars={[
        { src: "/people/ava.jpg", alt: "Community member" },
        { src: "/people/theo.jpg", alt: "Community member" },
        { src: "/people/priya.jpg", alt: "Community member" },
      ]}
      button={{ label: "Say hello first", href: "/chat" }}
      labels={{
        count: "1,200",
        proof: "founding members already inside",
        placeholder: "you@studio.com",
        success: "You're in. We'll send your invite before the doors open.",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
badgeBadgeParenthetical eyebrow rendered above the heading via Badge7
labelsComingSoon61Labels{}Member count, proof, and form placeholder and success strings
headingstringWaitlist heading
descriptionstringSupporting paragraph under the heading
avatarsAvatarItem[][]Overlapping member avatar stack shown as social proof
buttonActionLinkSecondary outline community pill rendered via Button12 with a MessageCircle icon
classNamestringExtra classes for the outer <section>
ts
type AvatarItem = {
  src: string;
  alt: string;
};

type Badge = {
  label: string;
};

type ActionLink = {
  label: string;
  href: string;
};

type ComingSoon61Labels = {
  count?: string;
  proof?: string;
  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

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

comingsoon50

Launch Readiness Progress

A coming-soon section on a soft muted card with a monospace parenthetical eyebrow, a heading, a launch-readiness percentage that counts up with an animated progress bar, a build-status row, and a working email notify form.

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

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

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.