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.
A monochrome, editorial two-column pre-launch section from the Auralis set that pairs a parenthetical eyebrow, an oversized headline, a supporting paragraph, a working rounded email-capture form with its success state, and an avatar social-proof row on the left with a tall full-bleed image carrying a floating launch label on the right.
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/comingsoon16?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon16?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/comingsoon16.tsx.
The installed file exports comingsoon16Demo alongside the block: the exact props behind the preview above. Spread it to get a working waitlist section in one line.
import { ComingSoon16, comingsoon16Demo } from "@/components/beste/block/comingsoon16";
export default function Page() {
return <ComingSoon16 {...comingsoon16Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { ComingSoon16 } from "@/components/beste/block/comingsoon16";
export default function Page() {
return (
<ComingSoon16
badge={{ label: "Almost here" }}
heading="A quieter place to draft, shape and ship the work that <strong>actually leaves the studio.</strong>"
description="We're opening the first hundred seats to people who make things for a living."
avatars={[
{ src: "/people/ava.jpg", alt: "Early member" },
{ src: "/people/theo.jpg", alt: "Early member" },
]}
image={{ src: "/studio.jpg", alt: "A calm, light-filled studio workspace" }}
labels={{
placeholder: "you@studio.com",
success: "You're on the list. We'll write the moment doors open.",
privacy: "One email at launch. No noise.",
proof: "2,100 makers already holding a seat",
imageLabel: "Opening this autumn",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Eyebrow badge rendered above the heading via Badge7 |
labels | ComingSoon16Labels | {} | Form placeholder, success, and privacy strings plus the proof text and floating image label |
heading | string | – | Oversized headline; honors an inline <strong> for the muted second clause |
description | string | – | Supporting paragraph under the heading |
avatars | AvatarItem[] | [] | Overlapping avatar stack shown as social proof |
image | ImageItem | – | Tall full-bleed image on the right, with the floating label overlaid |
className | string | – | Extra classes for the outer <section> |
type Badge = {
label: string;
};
type ComingSoon16Labels = {
placeholder?: string;
success?: string;
privacy?: string;
proof?: string;
imageLabel?: string;
};
type AvatarItem = {
src: string;
alt: string;
};
type ImageItem = {
src: string;
alt: string;
};handleSubmit calls preventDefault and only flips when the trimmed email is non-empty, so there is no external callback to wire.heading is rendered through dangerouslySetInnerHTML, so an inline <strong> is honored and styled in text-muted-foreground; every other string is plain text with no markup parsing.<input> and a circular submit button carrying an ArrowUpRight icon; the privacy line renders only before submit.avatars or labels.proof is set, with avatars as a -space-x-3 overlapping stack of plain <img> elements with border-background rings.4/5 aspect image absolutely covering a rounded bg-muted frame, with imageLabel shown in a floating backdrop-blurred pill via Badge7.Wiring the form up
The waitlist 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.
comingsoon59
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.
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.
comingsoon36
A centered pre-launch section with a square eyebrow, an accent-highlighted heading, a large colon-separated live countdown clock, a working email-capture form with a success state, and an avatar social-proof row.
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.