What Happens Next WaitlistPRO

A waitlist coming-soon section with a monospace parenthetical eyebrow, a heading, a working email notify form, and a three-step numbered process explaining what happens after signing up.

ComingSoon65: What Happens Next Waitlist

A monochrome Auralis waitlist section (oversized editorial type, a monospace parenthetical eyebrow) that centers a badge, a heading, and a description over a working email notify form, then explains the wait with a three-step numbered process below.

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

Base UI flavor

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

This installs the block to components/beste/block/comingsoon65.tsx.

Quick start

The installed file exports comingsoon65Demo alongside the block: the exact props behind the preview above. Spread it to get a working waitlist page in one line.

tsx
import { ComingSoon65, comingsoon65Demo } from "@/components/beste/block/comingsoon65";

export default function Page() {
  return <ComingSoon65 {...comingsoon65Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { ComingSoon65 } from "@/components/beste/block/comingsoon65";

export default function Page() {
  return (
    <ComingSoon65
      badge={{ label: "How it works" }}
      heading="Join the list, and here's exactly what happens next."
      description="No mystery, no daily emails. Just three simple steps."
      steps={[
        { title: "You join the list", description: "Drop your email and you're locked in for first access." },
        { title: "We build in the open", description: "A short note now and then as things take shape." },
        { title: "You get in first", description: "The day we open, your invite lands before the public link." },
      ]}
      labels={{
        placeholder: "you@studio.com",
        success: "You're on the list. Step one, done.",
        stepsCaption: "After you join",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
badgeBadgeEyebrow badge rendered above the heading via Badge7
labelsComingSoon65Labels{}Form placeholder, success, and steps-caption strings
headingstringInvitation heading
descriptionstringSupporting paragraph under the heading
stepsStepItem[][]Numbered process steps shown below the form
classNamestringExtra classes for the outer <section>
ts
type Badge = {
  label: string;
};

type StepItem = {
  title: string;
  description: string;
};

type ComingSoon65Labels = {
  placeholder?: string;
  success?: string;
  stepsCaption?: 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

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.

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.

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

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

comingsoon62

Course Enrollment Waitlist

An education coming-soon section with a square eyebrow, a course heading, a start/length/format details grid, a working waitlist email form, and a syllabus card listing numbered lessons.

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.