A two-column coming-soon section with a square eyebrow, a heading and a working email notify form, beside a browser-window mockup showing a blurred, lock-badged product preview.
A Polaris two-column coming-soon section that pairs a square eyebrow, a heading, a description, and a working email notify form with a browser-window mockup showing a blurred, lock-badged product preview.
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/comingsoon54?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon54?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/comingsoon54.tsx.
The installed file exports comingsoon54Demo alongside the block: the exact props behind the preview above. Spread it to get a working preview page in one line.
import { ComingSoon54, comingsoon54Demo } from "@/components/beste/block/comingsoon54";
export default function Page() {
return <ComingSoon54 {...comingsoon54Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { ComingSoon54 } from "@/components/beste/block/comingsoon54";
export default function Page() {
return (
<ComingSoon54
label="Product preview"
heading="Get a first look before we flip the switch."
description="We're in the final stretch of building something we think you'll love. Join the list to be handed the keys."
image={{ src: "/dashboard.jpg", alt: "A blurred preview of the product dashboard" }}
labels={{
urlText: "yourapp.com",
lockedText: "Preview locked until launch",
placeholder: "Enter your email",
success: "You're in. We'll unlock your preview on launch day.",
note: "Early birds get an extra month, on us.",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
label | string | – | Square eyebrow rendered above the heading via Badge6 |
labels | ComingSoon54Labels | {} | Mockup URL, locked badge, and form placeholder, success, and note strings |
heading | string | – | Notify heading |
description | string | – | Supporting paragraph under the heading |
image | ImageItem | – | Preview screenshot shown blurred inside the browser mockup |
className | string | – | Extra classes for the outer <section> |
type ImageItem = {
src: string;
alt: string;
};
type ComingSoon54Labels = {
urlText?: string;
lockedText?: 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 is set: a card with a three-dot title bar and an optional labels.urlText address pill, wrapping a 4:3 frame.<img> sits absolutely under a bg-foreground/30 backdrop-blur-sm overlay, which centers a Lock-badged pill whenever labels.lockedText is present.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.
comingsoon63
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.
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.
comingsoon15
A centered pre-launch section with an eyebrow, a large light heading, a paragraph, an image tile holding a working email-capture form with a success state, and a social-proof note.
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.