Launch Pass TicketPRO

A coming-soon section styled as a launch pass ticket with a square eyebrow, a heading and a working email notify form on the main stub, and a perforated tear-off stub carrying an admit-one tag, a barcode, and a pass code.

ComingSoon51: Launch Pass Ticket

A Polaris coming-soon section styled as a launch pass ticket, with a square eyebrow, a heading, and a working email notify form on the main stub, beside a perforated tear-off stub carrying an admit-one tag, a rendered barcode, and a pass code.

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

Base UI flavor

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

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

Quick start

The installed file exports comingsoon51Demo alongside the block: the exact props behind the preview above. Spread it to get a working launch pass in one line.

tsx
import { ComingSoon51, comingsoon51Demo } from "@/components/beste/block/comingsoon51";

export default function Page() {
  return <ComingSoon51 {...comingsoon51Demo} />;
}

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

tsx
import { ComingSoon51 } from "@/components/beste/block/comingsoon51";

export default function Page() {
  return (
    <ComingSoon51
      brand="Polaris"
      label="Early Access Pass"
      labels={{
        dateLabel: "Launch day",
        dateValue: "Oct 24, 2026",
        admitLabel: "Admit one",
        codeLabel: "Your pass",
        placeholder: "Enter your email",
        success: "Pass reserved. We'll email it before the doors open.",
      }}
      heading="Claim your pass to launch day."
      description="The first five hundred on the list walk in the moment we open."
      code="PLR-2026"
    />
  );
}

Props

PropTypeDefaultDescription
brandstringWordmark in the top corner of the main stub
labelstringSquare eyebrow rendered via Badge6
labelsComingSoon51Labels{}Date row, admit and code captions, and form strings
headingstringTicket heading on the main stub
descriptionstringSupporting paragraph under the heading
codestringPass code printed in monospace on the tear-off stub
classNamestringExtra classes for the outer <section>
ts
type ComingSoon51Labels = {
  dateLabel?: string;
  dateValue?: string;
  admitLabel?: string;
  codeLabel?: 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

comingsoon57

Event Tickets Coming Soon

An event coming-soon section with a square eyebrow, an event name and heading, a date and venue meta row with icons, a working ticket-alert email form, and a speaker avatar row.

PRO

comingsoon44

Founder Note Waitlist

A personal pre-launch section with a square eyebrow, a statement heading, a short founder note in paragraphs, and a signature row with avatar beside a dark seal waitlist button.

PRO

comingsoon23

Founding Member Offer

A bordered pre-launch offer card with a square eyebrow, a heading, a checked benefit list, a seats-claimed progress bar, and a working rounded email-capture form with a success state.

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

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.