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

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

comingsoon69

Careers Job Alerts

A hiring coming-soon section with a centered square eyebrow and heading, a working job-alert email form, and a list of upcoming roles with team and employment type.

FREE

comingsoon1

Countdown Timer Launch

Coming soon section with a live countdown timer showing days, hours, minutes, and seconds until launch. Perfect for product launches, event announcements, or building anticipation for new features.