Course Enrollment Waitlist

Enrollment Opens Soon

Design systems, from first token to shipped product.

A six-week cohort for designers and engineers who want to build systems that actually get used. Join the waitlist for early enrollment.

Starts
March 3
Length
6 weeks
Format
Live, online

Waitlist members enroll a day early, at a lower price.

What you'll learn

  • 01Foundations: color, type, and spacing scales
  • 02Components that survive real product pressure
  • 03Documentation people actually read
  • 04Rolling it out without breaking teams
About this block

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

  • The waitlist form owns its email state and swaps to a success panel on submit; handleSubmit calls preventDefault and only flips when the trimmed email is non-empty, so there is no external callback to wire.
  • The details grid renders only when details is non-empty, laying out three columns of label-over-value pairs above the form.
  • The syllabus card renders only when syllabus is non-empty, listing each lesson with a zero-padded accent index (01, 02, ...), and its title depends on labels.syllabusTitle.
  • The eyebrow, heading, and description each render only when their prop is present, and the note line renders under the form only while the form has not been submitted.
  • Every string is plain text with no inline markup parsing, so HTML passed in shows as escaped text.

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

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

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

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

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.