Exhibition Opening RSVPPRO

An art exhibition coming-soon section with an artwork image beside a monospace parenthetical eyebrow, a show title, an artist line, a preview and dates list, and a working RSVP email form.

ComingSoon72: Exhibition Opening RSVP

A monochrome Auralis art-exhibition section (oversized editorial type, a monospace parenthetical eyebrow) that sets an artwork image beside an eyebrow, an oversized show title, an artist line, a description, a preview-and-dates list, and a working RSVP email form.

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

Base UI flavor

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

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

Quick start

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

tsx
import { ComingSoon72, comingsoon72Demo } from "@/components/beste/block/comingsoon72";

export default function Page() {
  return <ComingSoon72 {...comingsoon72Demo} />;
}

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

tsx
import { ComingSoon72 } from "@/components/beste/block/comingsoon72";

export default function Page() {
  return (
    <ComingSoon72
      badge={{ label: "The exhibition" }}
      heading="Quiet Structures"
      artist="New work by Ivo Marchetti"
      description="A series on stillness, shadow, and the spaces we pass through without noticing."
      meta={[
        { label: "Preview", value: "Oct 12, 7pm" },
        { label: "Runs", value: "Oct 13 to Nov 9" },
        { label: "Gallery", value: "Hall Two, The Foundry" },
      ]}
      image={{ src: "/artwork.jpg", alt: "A minimal artwork on a gallery wall" }}
      labels={{
        placeholder: "you@studio.com",
        success: "You're on the guest list. An invite follows before opening night.",
        note: "Opening night is invite-only. Seats are limited.",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
badgeBadgeEyebrow badge rendered via Badge7
labelsComingSoon72Labels{}Form placeholder, success, and note strings
headingstringOversized show title
artiststringArtist line under the title
descriptionstringSupporting paragraph under the artist line
metaMetaItem[][]Preview and dates list rendered as a <dl>
imageImageItemArtwork image beside the copy
classNamestringExtra classes for the outer <section>
ts
type Badge = {
  label: string;
};

type ImageItem = {
  src: string;
  alt: string;
};

type MetaItem = {
  label: string;
  value: string;
};

type ComingSoon72Labels = {
  placeholder?: string;
  success?: string;
  note?: 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

comingsoon75

Launch Party RSVP

A launch-event coming-soon section on a soft muted card with a monospace parenthetical eyebrow, a heading, a when and where row, a working RSVP email form, an outline add-to-calendar pill button, and an attendee avatar row.

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

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

comingsoon52

Image Mosaic Notify

A coming-soon section with a full-bleed image mosaic background under a dark overlay and a centered card holding a square eyebrow, a heading, a description, 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

comingsoon73

Sign The Wall Waitlist

An interactive waitlist coming-soon section with a monospace parenthetical eyebrow, a heading, a name and email form, and a live wall of member name chips that prepends your own entry on submit.