App Waitlist SplitPRO

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.

ComingSoon59: App Waitlist Split

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.

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/comingsoon59?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

Quick start

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.

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

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

Props

PropTypeDefaultDescription
brandstringWordmark rendered top-left of the copy panel
badgeBadgeParenthetical eyebrow rendered top-right via Badge7
labelsComingSoon59Labels{}Form placeholder, success, and note strings
headingstringWaitlist heading
descriptionstringSupporting paragraph under the heading
platformsstring[][]Platform chips rendered under the form
imageImageItemFull-bleed image filling the other half of the card
classNamestringExtra classes for the outer <section>
ts
type Badge = {
  label: string;
};

type ImageItem = {
  src: string;
  alt: string;
};

type ComingSoon59Labels = {
  placeholder?: string;
  success?: string;
  note?: string;
};

Behavior notes

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.

More Coming Soon blocks

View all Coming Soon
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

comingsoon46

Split Screen Launch

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.

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

comingsoon61

Community Launch Waitlist

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.

PRO

comingsoon30

Interest Selector Waitlist

A centered full-bleed image waitlist section with a dark overlay and light text, a monospace parenthetical eyebrow, a heading, a set of toggleable interest chips, and a working rounded email-capture form with a success state.

PRO

comingsoon15

Waitlist Coming Soon

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.