Quiet Waitlist

Altair

Spring 2027

Groupsessionsarecoming.Slowly,likeeverythingelsehere.

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.

Portrait
Portrait
Portrait

31 names so far

About this block

Quiet WaitlistPRO

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.

Comingsoon81: Quiet Waitlist

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.

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

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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"
    />
  );
}

Props

PropTypeDefaultDescription
brandstringWordmark at the top left
eyebrowstringSmall-caps line above the headline
headingstringHeadline, rendered as the page h1 through Text1
descriptionstringParagraph under the headline
form{ placeholder: string; button: string; note: string }Email row and the note under it
avatarsAvatar[][]Overlapping portraits
proofstringCount printed beside the avatars
classNamestringExtra classes for the outer <section>
ts
type Avatar = {
  src: string;
  alt: string;
};

Behavior notes

  • Everything under the wordmark is centred in a flex-1 column, so the page stays optically centred on any viewport height rather than being pushed down by a fixed top padding.
  • The heading runs with 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.
  • Everything after the heading waits on 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.
  • The note is rendered outside the 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.
  • The 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.
  • Avatars overlap with -space-x-3 and each carries a border-background ring, which is what separates them rather than a gap.
  • The form only calls 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.

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

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

comingsoon16

Image Split Waitlist

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.

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

comingsoon44

Founder Note Waitlist

A personal pre-launch section with a square eyebrow, a statement heading, a short founder note in paragraphs, and a signature row with avatar beside a dark seal waitlist button.