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.
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.
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
npx shadcn add "https://ui.beste.co/r/comingsoon62?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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.",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
label | string | – | Square eyebrow rendered above the heading via Badge6 |
labels | ComingSoon62Labels | {} | Syllabus title and form placeholder, success, and note strings |
heading | string | – | Course heading |
description | string | – | Supporting paragraph under the heading |
details | DetailItem[] | [] | Start, length, and format details grid |
syllabus | string[] | [] | Numbered lesson list rendered in the syllabus card |
className | string | – | Extra classes for the outer <section> |
type DetailItem = {
label: string;
value: string;
};
type ComingSoon62Labels = {
syllabusTitle?: string;
placeholder?: string;
success?: string;
note?: string;
};handleSubmit calls preventDefault and only flips when the trimmed email is non-empty, so there is no external callback to wire.details is non-empty, laying out three columns of label-over-value pairs above the form.syllabus is non-empty, listing each lesson with a zero-padded accent index (01, 02, ...), and its title depends on labels.syllabusTitle.note line renders under the form only while the form has not been submitted.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.
comingsoon15
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.
comingsoon65
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.
comingsoon21
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.
comingsoon36
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.