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.
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.
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/comingsoon72?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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.",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | Badge | – | Eyebrow badge rendered via Badge7 |
labels | ComingSoon72Labels | {} | Form placeholder, success, and note strings |
heading | string | – | Oversized show title |
artist | string | – | Artist line under the title |
description | string | – | Supporting paragraph under the artist line |
meta | MetaItem[] | [] | Preview and dates list rendered as a <dl> |
image | ImageItem | – | Artwork image beside the copy |
className | string | – | Extra classes for the outer <section> |
type Badge = {
label: string;
};
type ImageItem = {
src: string;
alt: string;
};
type MetaItem = {
label: string;
value: string;
};
type ComingSoon72Labels = {
placeholder?: string;
success?: string;
note?: string;
};handleSubmit calls preventDefault and only flips to the success capsule when the trimmed email is non-empty, so there is no external callback to wire.bg-muted success capsule with a Check icon, and the note line hides once submitted since it renders only when note is set and the form is not yet submitted.image renders as a plain <img> absolutely positioned to cover its frame; it renders only when image is present.meta is non-empty, opening under a top border with each row as a label on the left and a value on the right.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.
comingsoon75
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.
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.
comingsoon56
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.
comingsoon52
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.