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.
An Auralis product launch coming-soon section that sets a full-height product image beside a monospace parenthetical eyebrow, a product name, a tagline, a ship date, a working notify email form that swaps to a success state, and a spec grid.
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/comingsoon63?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon63?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/comingsoon63.tsx.
The installed file exports comingsoon63Demo alongside the block: the exact props behind the preview above. Spread it to get a working pre-order teaser in one line.
import { ComingSoon63, comingsoon63Demo } from "@/components/beste/block/comingsoon63";
export default function Page() {
return <ComingSoon63 {...comingsoon63Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { ComingSoon63 } from "@/components/beste/block/comingsoon63";
export default function Page() {
return (
<ComingSoon63
badge={{ label: "Pre-order soon" }}
heading="The Field Watch, Series 02."
tagline="Machined titanium, a sapphire face, and a movement built to outlive its trends. Reserve yours before the first run sells out."
specs={[
{ label: "Case", value: "38mm titanium" },
{ label: "Glass", value: "Sapphire crystal" },
{ label: "Water", value: "100m rated" },
]}
image={{ src: "/watch.jpg", alt: "A minimal field watch on a neutral surface" }}
labels={{
releaseLabel: "Ships",
releaseValue: "November 2026",
placeholder: "you@studio.com",
success: "You're on the list. We'll open pre-orders to you first.",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | Badge | – | Parenthetical eyebrow rendered above the heading via Badge7 |
labels | ComingSoon63Labels | {} | Ship date label and value, and form placeholder and success strings |
heading | string | – | Product name headline |
tagline | string | – | Supporting paragraph under the heading |
specs | SpecItem[] | [] | Three-column spec grid under the form |
image | ImageItem | – | Full-height product image beside the copy |
className | string | – | Extra classes for the outer <section> |
type Badge = {
label: string;
};
type ImageItem = {
src: string;
alt: string;
};
type SpecItem = {
label: string;
value: string;
};
type ComingSoon63Labels = {
releaseLabel?: string;
releaseValue?: string;
placeholder?: string;
success?: 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> filling a bg-muted frame beside the copy column.labels.releaseLabel or labels.releaseValue is set, pairing a muted label with a bold value over a top border.specs is non-empty, as three columns of label-over-value pairs below the form.rounded-full pill with a bg-foreground text-background submit button, and the eyebrow, heading, and tagline each render only when their prop is present; every string is plain text with no inline markup parsing, so HTML passed in shows as escaped text.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.
comingsoon58
An e-commerce coming-soon section with a square eyebrow, a heading, a drop-date card, a grid of product teaser cards with blurred prices, and a working email notify form with a success state.
comingsoon54
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.
comingsoon33
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.
comingsoon68
A music release coming-soon section with a square cover image beside an artist name, a monospace parenthetical eyebrow, a title, a release date, a working pre-order email form, and a numbered tracklist.