Image Notify BarPRO

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.

ComingSoon55: Image Notify Bar

A Polaris full-bleed image coming-soon hero with a bottom gradient and light text, a square eyebrow, a large heading, and a supporting line, set beside a solid notify card holding a working email 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/comingsoon55?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

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

Quick start

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

tsx
import { ComingSoon55, comingsoon55Demo } from "@/components/beste/block/comingsoon55";

export default function Page() {
  return <ComingSoon55 {...comingsoon55Demo} />;
}

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

tsx
import { ComingSoon55 } from "@/components/beste/block/comingsoon55";

export default function Page() {
  return (
    <ComingSoon55
      label="Almost ready"
      heading="Something worth the wait is nearly here."
      description="We're a few weeks from opening the doors. Leave your email and we'll make sure you're among the first inside."
      image={{ src: "/landscape.jpg", alt: "A misty landscape at first light" }}
      labels={{
        formTitle: "Be the first to know",
        placeholder: "Enter your email",
        success: "You're on the list. We'll send word the day we open.",
        note: "No spam, unsubscribe anytime.",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringSquare eyebrow rendered over the image via Badge6
labelsComingSoon55Labels{}Notify card title and form placeholder, success, and note strings
headingstringLarge hero heading in light text
descriptionstringSupporting line under the heading
imageImageItemFull-bleed background image behind the gradient
classNamestringExtra classes for the outer <section>
ts
type ImageItem = {
  src: string;
  alt: string;
};

type ComingSoon55Labels = {
  formTitle?: string;
  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

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

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.

FREE

comingsoon4

Animated Icons Preview

Coming soon section with floating animated icons and a pulsing status indicator using Framer Motion animations. Perfect for creating visual excitement and a dynamic atmosphere before a product launch.

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

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

comingsoon50

Launch Readiness Progress

A coming-soon section on a soft muted card with a monospace parenthetical eyebrow, a heading, a launch-readiness percentage that counts up with an animated progress bar, a build-status row, and a working email notify form.