We're opening Sirius to a first group of clinics soon. Leave your email and we'll save you a place in line.
1,200 clinics already on the list.
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.
A centered pre-launch section that stacks an eyebrow badge, a large light heading, and a paragraph above an image tile that holds a working email-capture form with its own success state, closed by a monospace social-proof note.
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/comingsoon15?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon15?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/comingsoon15.tsx.
The installed file exports comingsoon15Demo alongside the block: the exact props behind the preview above. Spread it to get a working waitlist in one line.
import { Comingsoon15, comingsoon15Demo } from "@/components/beste/block/comingsoon15";
export default function Page() {
return <Comingsoon15 {...comingsoon15Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Comingsoon15 } from "@/components/beste/block/comingsoon15";
export default function Page() {
return (
<Comingsoon15
badge={{ label: "Launching this spring" }}
heading="Care software that finally gets out of the way"
description="We're opening to a first group of clinics soon. Leave your email to save a place in line."
image={{ src: "/backdrop.jpg", alt: "Soft blue gradient backdrop" }}
formTitle="Get early access"
placeholder="you@clinic.com"
buttonLabel="Notify me"
formNote="No spam, just one launch note."
successTitle="You're on the list"
successNote="We'll email you the moment access opens."
note="1,200 clinics already on the list."
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | Badge | – | Eyebrow label rendered above the heading via the beste Badge23 component |
heading | string | – | Large light heading |
description | string | – | Supporting paragraph under the heading |
image | TileImage | – | Cover image filling the form tile behind the card |
formTitle | string | – | Heading shown inside the form card |
placeholder | string | "you@example.com" | Placeholder for the email input |
buttonLabel | string | "Subscribe" | Submit button label |
formNote | string | – | Small note under the form input |
successTitle | string | "You're on the list" | Heading shown in the success card after submit |
successNote | string | – | Supporting line in the success card |
note | string | – | Social-proof note below the tile |
className | string | – | Extra classes for the outer <section> |
interface Badge {
label: string;
}
interface TileImage {
src: string;
alt: string;
}useState string and a submitted flag, and submitting calls preventDefault, only flipping to the success state when the trimmed email is non-empty, so there is no external callback to wire.<form> is replaced by a check-marked success card built from successTitle and the optional successNote.<input> is a native required field bound to state; the submit control is a plain <button> rather than a shadcn primitive.<img> absolutely positioned behind the card, and the tile falls back to a muted surface when image is omitted.Wiring the form up
The form ships as UI without a backend, so submissions are not sent anywhere until you connect one. Point the submit handler 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.
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.
comingsoon6
Coming soon section with an email waitlist input, stacked subscriber avatars, and a live join count. Perfect for building early traction and social proof before launch.
comingsoon21
A centered waitlist section with a square eyebrow, a bold accent-highlighted heading, a working rounded email-capture form with a success state, and an avatar row with a live signup counter.