Video Teaser RevealPRO

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.

ComingSoon33: Video Teaser Reveal

A monochrome, editorial full-bleed image pre-launch teaser with a dark overlay, centering a parenthetical eyebrow, a large play button that opens the teaser video in a modal, a heading and supporting line, and a light outline waitlist pill 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/comingsoon33?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

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

Quick start

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

tsx
import { ComingSoon33, comingsoon33Demo } from "@/components/beste/block/comingsoon33";

export default function Page() {
  return <ComingSoon33 {...comingsoon33Demo} />;
}

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

tsx
import { ComingSoon33 } from "@/components/beste/block/comingsoon33";

export default function Page() {
  return (
    <ComingSoon33
      badge={{ label: "First look" }}
      heading="Two minutes on what we've been building."
      description="Watch the studio walk through the first release, then leave your address."
      videoUrl="https://www.youtube.com/watch?v=LTBIvdxPvDA"
      button={{ label: "Join the waitlist", href: "/waitlist" }}
      image={{ src: "/teaser.jpg", alt: "A studio team at work, still from the launch teaser" }}
      labels={{ playLabel: "Play the teaser", closeLabel: "Close video" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Parenthetical eyebrow rendered over the image via Badge7 in a light tone
labelsComingSoon33Labels{}Accessible labels for the play button and the modal close button
headingstringSection heading in light text
descriptionstringSupporting paragraph under the heading
videoUrlstringTeaser video URL loaded into the modal iframe
buttonActionLinkWaitlist pill link rendered via Button12 with the outline tone
imageImageItemFull-bleed background image behind the dark overlay
classNamestringExtra classes for the outer <section>
ts
type ComingSoon33Labels = {
  playLabel?: string;
  closeLabel?: string;
};

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

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

Behavior notes

More Coming Soon blocks

View all Coming Soon
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

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

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.

PRO

comingsoon52

Image Mosaic Notify

A coming-soon section with a full-bleed image mosaic background under a dark overlay and a centered card holding a square eyebrow, a heading, a description, and a working email notify form with a success state.

PRO

comingsoon31

Typographic Wordmark

A monumental full-bleed image pre-launch statement with a dark overlay, a monospace parenthetical eyebrow, an oversized centered wordmark, a single supporting tagline, and a light outline notify pill button.