Launch Season RevealPRO

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.

ComingSoon18: Launch Season Reveal

A monochrome, editorial full-bleed image pre-launch hero from the Auralis set that overlays a parenthetical eyebrow at the top and, pinned to the bottom, a small kicker, an oversized launch-date headline, a supporting line, and a light outline pill notify button, all lifted above a dark scrim.

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

Base UI flavor

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

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

Quick start

The installed file exports comingsoon18Demo alongside the block: the exact props behind the preview above. Spread it to get a working reveal hero in one line.

tsx
import { ComingSoon18, comingsoon18Demo } from "@/components/beste/block/comingsoon18";

export default function Page() {
  return <ComingSoon18 {...comingsoon18Demo} />;
}

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

tsx
import { ComingSoon18 } from "@/components/beste/block/comingsoon18";

export default function Page() {
  return (
    <ComingSoon18
      badge={{ label: "Save the date" }}
      heading="Autumn 2026"
      description="The full catalogue and the first open studio hours all land when the season turns."
      button={{ label: "Notify me at launch", href: "/waitlist" }}
      image={{ src: "/autumn.jpg", alt: "Warm autumn light across a quiet interior" }}
      labels={{ kicker: "Doors open" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow badge pinned top-left via Badge7, tinted for the dark image
labelsComingSoon18Labels{}Holds the small kicker line shown above the headline
headingstringOversized launch-date headline pinned to the bottom
descriptionstringSupporting line under the headline
buttonActionLinkNotify link rendered via Button12 with the outline tone
imageImageItemFull-bleed background image behind the dark scrim
classNamestringExtra classes for the outer <section>
ts
type Badge = {
  label: string;
};

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

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

type ComingSoon18Labels = {
  kicker?: string;
};

Behavior notes

More Coming Soon blocks

View all Coming Soon
PRO

comingsoon33

Video Teaser Reveal

A full-bleed image pre-launch teaser with a dark overlay, a monospace parenthetical eyebrow, a central play button that opens the teaser video in a modal, a heading and supporting line, and a light outline waitlist pill button.

PRO

comingsoon47

Marquee Launch Hero

A coming-soon hero with an oversized looping background marquee behind a centered monospace parenthetical eyebrow, a bold wordmark, a tagline, and a working email notify form with a success state.

PRO

comingsoon77

Full-Bleed Launch Countdown

A pre-launch section on a full-bleed photograph under a dark gradient, with a light display heading, four oversized countdown figures between hairline rules, and a working email capture card.

PRO

comingsoon55

Image Notify Bar

A full-bleed image coming-soon hero with a bottom gradient and light text, a square eyebrow, a large heading and a supporting line, beside a solid notify card holding a working email form with a success state.

PRO

comingsoon63

Product Pre-Order Teaser

A product launch coming-soon section with a full-height product image beside a monospace parenthetical eyebrow, a product name, a tagline, a ship date, a working notify email form, and a spec grid.

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.