Waitlist Coming Soon

Launching this spring

Care software that finally gets out of the way

We're opening Sirius to a first group of clinics soon. Leave your email and we'll save you a place in line.

Soft blue gradient backdrop

Get early access

No spam, just one launch note.

1,200 clinics already on the list.

About this block

Waitlist Coming SoonPRO

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.

Comingsoon15: Waitlist Coming Soon

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.

Upgrade Now

Installation

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

bash
npx shadcn add "https://ui.beste.co/r/comingsoon15?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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."
    />
  );
}

Props

PropTypeDefaultDescription
badgeBadgeEyebrow label rendered above the heading via the beste Badge23 component
headingstringLarge light heading
descriptionstringSupporting paragraph under the heading
imageTileImageCover image filling the form tile behind the card
formTitlestringHeading shown inside the form card
placeholderstring"you@example.com"Placeholder for the email input
buttonLabelstring"Subscribe"Submit button label
formNotestringSmall note under the form input
successTitlestring"You're on the list"Heading shown in the success card after submit
successNotestringSupporting line in the success card
notestringSocial-proof note below the tile
classNamestringExtra classes for the outer <section>
ts
interface Badge {
  label: string;
}

interface TileImage {
  src: string;
  alt: string;
}

Behavior notes

  • The block is a client component: it holds the email in a 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.
  • Inside the image tile the form and the success card share one slot: on submit the <form> is replaced by a check-marked success card built from successTitle and the optional successNote.
  • The email <input> is a native required field bound to state; the submit control is a plain <button> rather than a shadcn primitive.
  • The cover image renders as a plain <img> absolutely positioned behind the card, and the tile falls back to a muted surface when image is omitted.
  • The badge, heading, description, form title, form note, and social-proof note each render only when their prop is present.
  • Every string is rendered as plain text with no inline markup parsing, so HTML passed into any field shows as escaped text.

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.

More Coming Soon blocks

View all Coming Soon
PRO

comingsoon36

Countdown Clock Waitlist

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.

PRO

comingsoon32

Trusted By Waitlist

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.

PRO

comingsoon6

Waitlist with Avatars

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.

PRO

comingsoon21

Waitlist Signup Counter

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.

PRO

comingsoon16

Image Split Waitlist

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.

PRO

comingsoon73

Sign The Wall Waitlist

An interactive waitlist coming-soon section with a monospace parenthetical eyebrow, a heading, a name and email form, and a live wall of member name chips that prepends your own entry on submit.