Event Tickets Coming Soon

Tickets Soon

Assembly 2026

Two days for the people building what's next.

May 14–15, 2026Barbican, London

Talks, workshops, and the hallway conversations that stick with you. Get on the list for early-bird tickets before they open to everyone.

SpeakerSpeakerSpeakerSpeakerSpeaker

Speakers announced soon

About this block

Event Tickets Coming SoonPRO

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.

ComingSoon57: Event Tickets Coming Soon

A Polaris centered 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 that swaps to a success state, and a speaker avatar row.

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

Base UI flavor

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

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

Quick start

The installed file exports comingsoon57Demo alongside the block: the exact props behind the preview above. Spread it to get a working ticket-alert page in one line.

tsx
import { ComingSoon57, comingsoon57Demo } from "@/components/beste/block/comingsoon57";

export default function Page() {
  return <ComingSoon57 {...comingsoon57Demo} />;
}

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

tsx
import { ComingSoon57 } from "@/components/beste/block/comingsoon57";

export default function Page() {
  return (
    <ComingSoon57
      brand="Assembly 2026"
      label="Tickets soon"
      heading="Two days for the people building what's next."
      description="Talks, workshops, and the hallway conversations that stick with you. Get on the list for early-bird tickets."
      speakers={[
        { src: "/people/ava.jpg", alt: "Speaker" },
        { src: "/people/theo.jpg", alt: "Speaker" },
        { src: "/people/priya.jpg", alt: "Speaker" },
      ]}
      labels={{
        dateValue: "May 14 to 15, 2026",
        venue: "Barbican, London",
        speakersCaption: "Speakers announced soon",
        placeholder: "Enter your email",
        success: "You're in. We'll email you the second tickets go live.",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
brandstringEvent name rendered under the eyebrow
labelstringSquare eyebrow rendered via Badge6
labelsComingSoon57Labels{}Date, venue, speakers caption, and form placeholder and success strings
headingstringEvent heading
descriptionstringSupporting paragraph under the meta row
speakersAvatarItem[][]Overlapping speaker avatar stack shown below the form
classNamestringExtra classes for the outer <section>
ts
type AvatarItem = {
  src: string;
  alt: string;
};

type ComingSoon57Labels = {
  dateValue?: string;
  venue?: string;
  speakersCaption?: string;
  placeholder?: string;
  success?: string;
};

Behavior notes

  • The ticket-alert form owns its email state and swaps to a success panel on submit; handleSubmit calls preventDefault and only flips when the trimmed email is non-empty, so there is no external callback to wire.
  • The meta row renders whenever labels.dateValue or labels.venue is set, with a Calendar icon beside the date and a MapPin icon beside the venue.
  • The whole layout is a centered max-w-3xl column, and the eyebrow, event name, heading, and description each render only when their prop is present.
  • The speaker proof renders only when speakers is non-empty, as a -space-x-3 overlapping stack of plain <img> avatars over a top border, with labels.speakersCaption below when set.
  • Every string is plain text with no inline markup parsing, so 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.

More Coming Soon blocks

View all Coming Soon
PRO

comingsoon56

Restaurant Opening Soon

A hospitality coming-soon section with an interior image beside a venue name, a square eyebrow, a heading, an opening details grid with icons, and a working email list form with a success state.

PRO

comingsoon51

Launch Pass Ticket

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.

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.

PRO

comingsoon58

Store Drop Coming Soon

An e-commerce coming-soon section with a square eyebrow, a heading, a drop-date card, a grid of product teaser cards with blurred prices, and a working email notify form with a success state.

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.