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.
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.
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/comingsoon40?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
label | string | – | Square eyebrow rendered above the heading via Badge6 |
labels | ComingSoon40Labels | {} | Holds the floating badge text shown over the image |
heading | string | – | City or location heading |
description | string | – | Supporting paragraph under the heading |
details | DetailItem[] | [] | Ruled grid of opening facts, one column per item |
button | ActionLink | – | Dark seal notify link rendered via Button1 |
image | ImageItem | – | Cover image tile on the left with an optional accent badge |
className | string | – | Extra classes for the outer <section> |
type DetailItem = {
label: string;
value: string;
};
type ActionLink = {
label: string;
href: string;
};
type ImageItem = {
src: string;
alt: string;
};
type ComingSoon40Labels = {
imageBadge?: string;
};image is set, as a plain <img> absolutely positioned to cover a 4/3 frame; labels.imageBadge overlays a bg-primary pill in the top-left corner when present.details grid renders as a <dl> on a sm:grid-cols-3 layout, with each item drawn under its own border-t rule, and it is omitted entirely when the array is empty.button renders as a real navigation via Button1 asChild wrapping a Next.js <Link href={button.href} /> with the dark tone, so it points at a URL rather than firing a handler.comingsoon49
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.
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.
comingsoon42
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.
comingsoon18
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.