Waitlist Queue PositionPRO

A centered post-signup confirmation card on a soft muted surface with a monospace parenthetical eyebrow, an oversized queue-position number, a progress-to-front bar, and a referral row with a copy-invite pill button.

ComingSoon17: Waitlist Queue Position

A monochrome, editorial post-signup confirmation card from the Auralis set that centers a parenthetical eyebrow, a reassuring heading, an oversized queue-position number, a progress-to-front bar, and a referral row with a copy-invite pill button, all over a soft muted surface.

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

Base UI flavor

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

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

Quick start

The installed file exports comingsoon17Demo alongside the block: the exact props behind the preview above. Spread it to get a working confirmation card in one line.

tsx
import { ComingSoon17, comingsoon17Demo } from "@/components/beste/block/comingsoon17";

export default function Page() {
  return <ComingSoon17 {...comingsoon17Demo} />;
}

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

tsx
import { ComingSoon17 } from "@/components/beste/block/comingsoon17";

export default function Page() {
  return (
    <ComingSoon17
      badge={{ label: "You're in" }}
      heading="Reserved. Now let's move you toward the front."
      position="482"
      progress={68}
      inviteLink="/waitlist?ref=you"
      labels={{
        positionCaption: "Your place in line",
        progressNote: "You've moved past 6,318 people already.",
        referralNote: "Every maker who joins on your link lifts you 40 places.",
        copyLabel: "Copy invite link",
        copiedLabel: "Link copied",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow badge rendered above the heading via Badge7
labelsComingSoon17Labels{}Position caption, progress note, referral note, and copy button label strings
headingstringConfirmation heading under the eyebrow
positionstringOversized queue-position number, prefixed with a muted #
progressnumber0Progress-to-front percentage, clamped to the 0 to 100 range
inviteLinkstringURL copied to the clipboard by the referral button
classNamestringExtra classes for the outer <section>
ts
type Badge = {
  label: string;
};

type ComingSoon17Labels = {
  positionCaption?: string;
  progressNote?: string;
  referralNote?: string;
  copyLabel?: string;
  copiedLabel?: string;
};

Behavior notes

More Coming Soon blocks

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

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

comingsoon30

Interest Selector Waitlist

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.