An app pre-launch split card with a muted panel holding a wordmark, a monospace parenthetical eyebrow, a heading, a working email waitlist form and platform chips, beside a full-bleed image covering the other half.
An Auralis app pre-launch split card that fills one half with a muted panel holding a wordmark, a monospace parenthetical eyebrow, a heading, a description, a working email waitlist form, and platform chips, and the other half with a full-bleed image.
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/comingsoon59?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon59?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/comingsoon59.tsx.
The installed file exports comingsoon59Demo alongside the block: the exact props behind the preview above. Spread it to get a working waitlist card in one line.
import { ComingSoon59, comingsoon59Demo } from "@/components/beste/block/comingsoon59";
export default function Page() {
return <ComingSoon59 {...comingsoon59Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { ComingSoon59 } from "@/components/beste/block/comingsoon59";
export default function Page() {
return (
<ComingSoon59
brand="Auralis"
badge={{ label: "Get the app" }}
heading="The studio, in your pocket, very soon."
description="Everything you love about the desktop studio, rebuilt for the days away from your desk. Leave your email for early access."
platforms={["Coming to iOS", "Coming to Android"]}
image={{ src: "/phone.jpg", alt: "A person using the app on a phone" }}
labels={{
placeholder: "you@studio.com",
success: "You're on the list. We'll send the download link at launch.",
note: "Reserve your spot and we'll send the app the day it lands.",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
brand | string | – | Wordmark rendered top-left of the copy panel |
badge | Badge | – | Parenthetical eyebrow rendered top-right via Badge7 |
labels | ComingSoon59Labels | {} | Form placeholder, success, and note strings |
heading | string | – | Waitlist heading |
description | string | – | Supporting paragraph under the heading |
platforms | string[] | [] | Platform chips rendered under the form |
image | ImageItem | – | Full-bleed image filling the other half of the card |
className | string | – | Extra classes for the outer <section> |
type Badge = {
label: string;
};
type ImageItem = {
src: string;
alt: string;
};
type ComingSoon59Labels = {
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.md:grid-cols-2: a bg-muted copy panel on one side and, when image is set, a plain <img> pinned absolutely to cover the other side.brand on the left and the Badge7 badge.label on the right, each rendering only when its prop is present.rounded-full pill with a bg-foreground text-background submit button, and the success panel inverts the same way; the note line renders only while the form has not been submitted.platforms is non-empty, and 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.
comingsoon16
A two-column pre-launch section with a monospace parenthetical eyebrow, an oversized headline, a working rounded email-capture form with a success state, an avatar social-proof row, and a tall full-bleed image carrying a floating launch label.
comingsoon46
A full-height split coming-soon page with a dark brand panel carrying a wordmark, a monospace parenthetical eyebrow, a heading and a working email notify form, beside a full-bleed image with a floating launch label.
comingsoon32
A centered pre-launch section with a monospace parenthetical eyebrow, a statement heading, a supporting paragraph, a waitlist pill button, and a captioned grayscale logo strip of early partners.
comingsoon61
A community coming-soon section on a soft muted card with a monospace parenthetical eyebrow, a heading, a working email waitlist form, a secondary outline community pill button, and an avatar row with a member count.