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.
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.
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
npx shadcn add "https://ui.beste.co/r/comingsoon51?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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"
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
brand | string | – | Wordmark in the top corner of the main stub |
label | string | – | Square eyebrow rendered via Badge6 |
labels | ComingSoon51Labels | {} | Date row, admit and code captions, and form strings |
heading | string | – | Ticket heading on the main stub |
description | string | – | Supporting paragraph under the heading |
code | string | – | Pass code printed in monospace on the tear-off stub |
className | string | – | Extra classes for the outer <section> |
type ComingSoon51Labels = {
dateLabel?: string;
dateValue?: string;
admitLabel?: string;
codeLabel?: string;
placeholder?: string;
success?: string;
};handleSubmit calls preventDefault and only flips to the success panel when the trimmed email is non-empty, so there is no external callback to wire.labels.dateLabel or labels.dateValue is present, drawn under a border-t rule above the form.BARCODE array of relative widths, mapped to aria-hidden bars, and the code prints in a monospace tracking-widest style under labels.codeLabel.labels.admitLabel renders as a bg-primary uppercase pill, and every string is plain text with no inline markup parsing, so any HTML passed in shows as escaped text.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.
comingsoon57
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.
comingsoon44
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.
comingsoon23
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.
comingsoon15
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.