Waitlist with Avatars

Early Access

Be the first to experience it

Join our waitlist and get exclusive early access when we launch. No spam, just one email when we're ready.

No spam. Unsubscribe anytime.

Alex
Sarah
Mike
Emma
John
2,840+ people already joined
About this block

Waitlist with AvatarsPRO

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.

ComingSoon6: Waitlist with Avatars

A centered waitlist section that stacks a badge, heading, and description above an inline email input and join button, then shows an overlapping subscriber avatar stack beside a templated join-count line for social proof.

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

Base UI flavor

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

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

Quick start

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

tsx
import { ComingSoon6, comingsoon6Demo } from "@/components/beste/block/comingsoon6";

export default function Page() {
  return <ComingSoon6 {...comingsoon6Demo} />;
}

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

tsx
import { ComingSoon6 } from "@/components/beste/block/comingsoon6";

export default function Page() {
  return (
    <ComingSoon6
      badge={{ label: "Early access", variant: "secondary" }}
      heading="Be the first to experience it"
      description="Join the waitlist and get access the moment we launch."
      subscribers={[
        { name: "Alex", image: "/people/alex.jpg" },
        { name: "Sarah", image: "/people/sarah.jpg" },
        { name: "Mike", image: "/people/mike.jpg" },
      ]}
      subscriberCount={2840}
      labels={{
        placeholder: "Enter your email",
        button: "Join waitlist",
        joinedCount: "{count}+ people already joined",
        noSpam: "No spam. Unsubscribe anytime.",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Eyebrow badge rendered above the heading via shadcn Badge
headingstringSection heading
descriptionstringSupporting paragraph under the heading
subscribersSubscriber[][]Avatars shown in the overlapping proof stack
subscriberCountnumber0Number interpolated into the join-count line
labels{ placeholder?: string; button?: string; joinedCount?: string; noSpam?: string }Input placeholder, button text, templated count, and the no-spam note
classNamestringExtra classes for the outer <section>
ts
interface Subscriber {
  name: string;
  image: string;
}

Behavior notes

  • The email Input and join Button render unconditionally as static UI: there is no local state, submit handler, or callback wired to either control.
  • The join-count line interpolates subscriberCount.toLocaleString() into labels.joinedCount by replacing the {count} token, so the number renders with locale grouping.
  • The proof row renders when either subscribers.length > 0 or subscriberCount > 0; within it the avatar stack renders only when there are subscribers, and it slices to the first five entries.
  • Avatars render as a -space-x-3 overlapping stack of plain <img> elements with border-background rings, and the noSpam note renders only when supplied.
  • The badge, heading, and description each render only when their prop is present, and every string is plain text with no inline markup parsing, so HTML passed in shows as escaped text.
  • Uses the shadcn Badge, Button, and Input primitives, with an ArrowRight lucide icon inside the button.

Wiring the form up

The form ships as UI without a backend, so submissions are not sent anywhere until you connect one. Point the submit handler 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

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

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

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.

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

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.