Altair
Spring 2027
Six people, one practitioner, ten weeks. We are taking names now and opening the first group when the right six have found each other.
No commitment. We write once, when the group forms.
31 names so far
A light full-height waitlist page: the wordmark in the corner, a centred eyebrow, a serif headline that settles in word by word, an intro, a rounded email field with a sliding-marker pill, a reassurance line and an avatar count of the names so far.
A quiet waitlist page: wordmark, an eyebrow date, a headline that settles in word by word, one inline email row, and a line of overlapping avatars with a count of the names already down.
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/comingsoon81?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon81?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/comingsoon81.tsx, the shadcn input primitive the capture is built on, and the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports comingsoon81Demo alongside the block: the exact props behind the preview above. Spread it to get a working waitlist page in one line.
import { Comingsoon81, comingsoon81Demo } from "@/components/beste/block/comingsoon81";
export default function Page() {
return <Comingsoon81 {...comingsoon81Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Comingsoon81 } from "@/components/beste/block/comingsoon81";
export default function Page() {
return (
<Comingsoon81
brand="Altair"
eyebrow="Spring 2027"
heading="Group sessions are coming. Slowly, like everything else here."
description="Six people, one practitioner, ten weeks. We are taking names now."
form={{
placeholder: "you@example.com",
button: "Put my name down",
note: "No commitment. We write once, when the group forms.",
}}
avatars={[{ src: "/people/one.jpg", alt: "Portrait" }]}
proof="31 names so far"
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
brand | string | – | Wordmark at the top left |
eyebrow | string | – | Small-caps line above the headline |
heading | string | – | Headline, rendered as the page h1 through Text1 |
description | string | – | Paragraph under the headline |
form | { placeholder: string; button: string; note: string } | – | Email row and the note under it |
avatars | Avatar[] | [] | Overlapping portraits |
proof | string | – | Count printed beside the avatars |
className | string | – | Extra classes for the outer <section> |
type Avatar = {
src: string;
alt: string;
};flex-1 column, so the page stays optically centred on any viewport height rather than being pushed down by a fixed top padding.trigger="mount" and a slightly faster 0.06s stagger than the component's default, because a full-screen page is above the fold and a long headline should not still be assembling when the reader arrives.0.4 + heading.split(" ").length * 0.06, the same arithmetic the stagger uses, so the description lands exactly as the last word does however long the headline is.form element rather than inside it, which keeps the input and its button as a single flex row that flips to a column below sm without the note joining that row.Input is deliberately transparent with a border that goes solid on focus and no focus ring, so the row reads as one object with the pill next to it.-space-x-3 and each carries a border-background ring, which is what separates them rather than a gap.preventDefault(); no address is captured or sent until you wire it up.Wiring the form up
This block ships the form markup only; state, validation, and submit are yours to add. Our guide wires the shadcn Field primitives to React Hook Form, TanStack Form, and Formisch on one field system.
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.
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.
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.
comingsoon16
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.