New Location OpeningPRO

A two-column location-launch section with an accent-badged image tile beside a square eyebrow, a city heading, a supporting line, a ruled details grid of opening facts, and a dark seal notify button.

ComingSoon40: New Location Opening

A Polaris two-column location-launch section that pairs an accent-badged image tile with a square eyebrow, a city heading, a supporting line, a ruled three-up details grid of opening facts, and a dark seal notify button.

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

Base UI flavor

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

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

Quick start

The installed file exports comingsoon40Demo alongside the block: the exact props behind the preview above. Spread it to get a working location-launch section in one line.

tsx
import { ComingSoon40, comingsoon40Demo } from "@/components/beste/block/comingsoon40";

export default function Page() {
  return <ComingSoon40 {...comingsoon40Demo} />;
}

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

tsx
import { ComingSoon40 } from "@/components/beste/block/comingsoon40";

export default function Page() {
  return (
    <ComingSoon40
      label="New Location"
      labels={{ imageBadge: "Now fitting out" }}
      heading="We're opening in Lisbon."
      description="Our first studio outside the capital lands this autumn."
      details={[
        { label: "Opening", value: "Late October 2026" },
        { label: "Where", value: "Rua da Escola Politécnica" },
        { label: "Hours", value: "Weekdays, 9 to 6" },
      ]}
      button={{ label: "Notify Me", href: "/notify" }}
      image={{ src: "/lisbon.jpg", alt: "A sunlit street in Lisbon" }}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringSquare eyebrow rendered above the heading via Badge6
labelsComingSoon40Labels{}Holds the floating badge text shown over the image
headingstringCity or location heading
descriptionstringSupporting paragraph under the heading
detailsDetailItem[][]Ruled grid of opening facts, one column per item
buttonActionLinkDark seal notify link rendered via Button1
imageImageItemCover image tile on the left with an optional accent badge
classNamestringExtra classes for the outer <section>
ts
type DetailItem = {
  label: string;
  value: string;
};

type ActionLink = {
  label: string;
  href: string;
};

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

type ComingSoon40Labels = {
  imageBadge?: string;
};

Behavior notes

More Coming Soon blocks

View all Coming Soon
PRO

comingsoon49

Framed Editorial Launch

A two-column coming-soon section with a vertical monospace edge label, an oversized wordmark, a tagline and a working email notify form, beside a framed portrait image tile.

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

comingsoon42

Podcast Launch Teaser

A two-column podcast-launch section with an accent-badged square cover image beside a square eyebrow, show title, description, a dark seal subscribe button, platform links, and a ruled list of first episodes.

PRO

comingsoon18

Launch Season Reveal

A full-bleed image pre-launch hero with a dark overlay, a monospace parenthetical eyebrow, a small kicker, an oversized launch-date headline, a supporting line, and a light outline pill notify button.

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

comingsoon45

Animated Waitlist Stats

A centered pre-launch section with a square eyebrow, a heading, a supporting line, a row of accent statistics that count up when scrolled into view, and a dark seal claim-seat button.