Restaurant Opening SoonPRO

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.

ComingSoon56: Restaurant Opening Soon

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.

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

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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.",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
brandstringVenue name rendered above the eyebrow
labelstringSquare eyebrow rendered via Badge6
labelsComingSoon56Labels{}Form placeholder, success, and note strings
headingstringOpening heading
descriptionstringSupporting paragraph under the heading
detailsDetailItem[][]Opening details grid, each row prefixed with an icon
imageImageItemInterior image beside the copy
classNamestringExtra classes for the outer <section>
ts
type ImageItem = {
  src: string;
  alt: string;
};

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

type ComingSoon56Labels = {
  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

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

comingsoon15

Waitlist Coming Soon

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.

PRO

comingsoon22

Coming Soon Notify Page

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.

PRO

comingsoon53

Next Issue Magazine

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.

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

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.