Staaarter

Event Tickets Coming Soon

A centered coming-soon screen for an event that hasn't opened ticket sales yet. Shows the event name, a date/venue meta row with icons, a working ticket-alert email form with a confirmation state, and a stacked row of confirmed-speaker avatars.

By Staaarter Team
Coming Soon
Docs
Live preview

Docs

Installation

A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its avatar, avatar-initials dependencies and any missing npm packages, and installs them straight into your project.

npx shadcn add https://staaarter.com/r/event-tickets-coming-soon.json

Prefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon57.tsx instead.

Usage

The file also exports comingsoon57Demo, the exact props behind the preview above. Spread it to get a working section in one line, then replace it with your own data.

import { ComingSoon57, comingsoon57Demo } from "@/components/blocks/coming-soon/comingsoon57";

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

Props

PropTypeDefaultDescription
eyebrowstring"Coming soon"Small label above the event name.
eventNamestringnoneName of the event, shown above the heading.
headingstring"Tickets go on sale soon"Main heading.
descriptionstring"Sign up for a ticket alert..."Supporting copy under the heading.
dateLabelstringnoneFormatted date range shown next to a calendar icon.
venueLabelstringnoneVenue name/location shown next to a map-pin icon.
speakersEventSpeaker[]noneConfirmed speakers rendered as a stacked avatar row.
speakersNotestring"Speakers confirmed so far"Caption under the speaker avatar row.
classNamestringnoneExtra classes for the outer section element.

Types

interface EventSpeaker {
  name: string;
  image?: { src: string; alt: string };
}

Behavior notes

  • The email field and submit are real client state (useState): submitting swaps the form for a confirmation message, nothing is sent to a server.
  • Speakers fall back to initials (via AvatarFallback/initialsFromName) when no `image` is supplied per entry.
  • The date and venue labels are plain formatted strings passed in as props, no Date.now() or new Date() is ever called in the render path.