Course Enrollment WaitlistPRO

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.

ComingSoon62: Course Enrollment Waitlist

A Polaris education coming-soon section with a square eyebrow, a course heading, a description, a start/length/format details grid, a working waitlist email form that swaps to a success state, and a syllabus card listing numbered lessons.

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

Base UI flavor

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

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

Quick start

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

tsx
import { ComingSoon62, comingsoon62Demo } from "@/components/beste/block/comingsoon62";

export default function Page() {
  return <ComingSoon62 {...comingsoon62Demo} />;
}

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

tsx
import { ComingSoon62 } from "@/components/beste/block/comingsoon62";

export default function Page() {
  return (
    <ComingSoon62
      label="Enrollment opens soon"
      heading="Design systems, from first token to shipped product."
      description="A six-week cohort for designers and engineers who want to build systems that actually get used. Join the waitlist."
      details={[
        { label: "Starts", value: "March 3" },
        { label: "Length", value: "6 weeks" },
        { label: "Format", value: "Live, online" },
      ]}
      syllabus={[
        "Foundations: color, type, and spacing scales",
        "Components that survive real product pressure",
        "Documentation people actually read",
        "Rolling it out without breaking teams",
      ]}
      labels={{
        syllabusTitle: "What you'll learn",
        placeholder: "Enter your email",
        success: "You're on the waitlist. We'll email you when enrollment opens.",
        note: "Waitlist members enroll a day early, at a lower price.",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringSquare eyebrow rendered above the heading via Badge6
labelsComingSoon62Labels{}Syllabus title and form placeholder, success, and note strings
headingstringCourse heading
descriptionstringSupporting paragraph under the heading
detailsDetailItem[][]Start, length, and format details grid
syllabusstring[][]Numbered lesson list rendered in the syllabus card
classNamestringExtra classes for the outer <section>
ts
type DetailItem = {
  label: string;
  value: string;
};

type ComingSoon62Labels = {
  syllabusTitle?: string;
  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

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

comingsoon65

What Happens Next Waitlist

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.

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

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

comingsoon43

Survey Waitlist

A pre-launch survey card with a square eyebrow, a heading, a single-choice question with selectable radio options, and a working rounded email-capture form with a success state.

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.