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.
A Polaris hospitality coming-soon section that sets an interior image beside a venue name, a square eyebrow, a heading, a description, an opening-details grid with icons, and a working email list form that swaps to a success state.
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/comingsoon56?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon56?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/comingsoon56.tsx.
The installed file exports comingsoon56Demo alongside the block: the exact props behind the preview above. Spread it to get a working opening page in one line.
import { ComingSoon56, comingsoon56Demo } from "@/components/beste/block/comingsoon56";
export default function Page() {
return <ComingSoon56 {...comingsoon56Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { ComingSoon56 } from "@/components/beste/block/comingsoon56";
export default function Page() {
return (
<ComingSoon56
brand="Fable & Oak"
label="Now serving soon"
heading="A new neighbourhood kitchen is almost ready."
description="Seasonal plates, a short wine list, and a room built for long dinners. Join the list for a seat on opening week."
details={[
{ label: "Opening", value: "Late September" },
{ label: "Where", value: "14 Bellwether Lane" },
{ label: "Hours", value: "Tue to Sun, from 6pm" },
]}
image={{ src: "/interior.jpg", alt: "A warm, inviting restaurant interior" }}
labels={{
placeholder: "Enter your email",
success: "You're on the list. We'll save you a table on opening night.",
note: "Be first to book when reservations open.",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
brand | string | – | Venue name rendered above the eyebrow |
label | string | – | Square eyebrow rendered via Badge6 |
labels | ComingSoon56Labels | {} | Form placeholder, success, and note strings |
heading | string | – | Opening heading |
description | string | – | Supporting paragraph under the heading |
details | DetailItem[] | [] | Opening details grid, each row prefixed with an icon |
image | ImageItem | – | Interior image beside the copy |
className | string | – | Extra classes for the outer <section> |
type ImageItem = {
src: string;
alt: string;
};
type DetailItem = {
label: string;
value: string;
};
type ComingSoon56Labels = {
placeholder?: string;
success?: string;
note?: string;
};handleSubmit calls preventDefault and only flips when the trimmed email is non-empty, so there is no external callback to wire.image renders only when set, as a plain <img> filling a bg-muted frame beside the copy column.details is non-empty, laying out up to three columns where each row draws its icon from a fixed Clock, MapPin, Clock cycle, so the label text sets the meaning rather than a per-row icon prop.note line renders under the form only while the form has not been submitted.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.
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.
comingsoon15
A centered pre-launch section with an eyebrow, a large light heading, a paragraph, an image tile holding a working email-capture form with a success state, and a social-proof note.
comingsoon22
A centered coming-soon launch page with a brand wordmark, a square eyebrow, an accent-highlighted heading, a working email notify form with a success state, a launch note, and a row of social links.
comingsoon53
A two-column coming-soon section styled as a magazine launch with an accent-badged cover image, a masthead, a square eyebrow, a heading, a numbered contents list, and a working email subscribe form.