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.
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.
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/comingsoon55?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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.",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
label | string | – | Square eyebrow rendered over the image via Badge6 |
labels | ComingSoon55Labels | {} | Notify card title and form placeholder, success, and note strings |
heading | string | – | Large hero heading in light text |
description | string | – | Supporting line under the heading |
image | ImageItem | – | Full-bleed background image behind the gradient |
className | string | – | Extra classes for the outer <section> |
type ImageItem = {
src: string;
alt: string;
};
type ComingSoon55Labels = {
formTitle?: string;
placeholder?: string;
success?: string;
note?: string;
};handleSubmit calls preventDefault and only flips when the trimmed email is non-empty, so there is no external callback to wire.image renders only when set, as a plain <img> pinned absolutely at -z-10, with a bg-gradient-to-t from-foreground/85 scrim above it so the light eyebrow, heading, and description read against the photo.Badge6 with a text-background/80 label class, and the heading and description are set in text-background tones tuned for the dark overlay.bg-background panel: its labels.formTitle renders only when present, and the note line renders under the form only while the form has not been submitted.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.
comingsoon52
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.
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.
comingsoon4
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.
comingsoon22
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.