Founder Note WaitlistPRO

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.

ComingSoon44: Founder Note Waitlist

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

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

Base UI flavor

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

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

Quick start

The installed file exports comingsoon44Demo alongside the block: the exact props behind the preview above. Spread it to get a working founder note in one line.

tsx
import { ComingSoon44, comingsoon44Demo } from "@/components/beste/block/comingsoon44";

export default function Page() {
  return <ComingSoon44 {...comingsoon44Demo} />;
}

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

tsx
import { ComingSoon44 } from "@/components/beste/block/comingsoon44";

export default function Page() {
  return (
    <ComingSoon44
      label="A Note From The Founder"
      heading="We'd rather be a few weeks late than a little bit wrong."
      note={[
        "We set out to build the tool we always wished we had.",
        "Leave your name below and you'll be the first ones in.",
      ]}
      signature={{
        name: "Elena Vares",
        role: "Co-founder & CEO",
        avatar: { src: "/founder.jpg", alt: "Portrait of the founder" },
      }}
      button={{ label: "Join The Waitlist", href: "/waitlist" }}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringSquare eyebrow rendered above the heading via Badge6
headingstringStatement heading
notestring[][]Founder note rendered as a ruled block of paragraphs
signatureSignatureAvatar, name, and role in the closing row
buttonActionLinkDark seal waitlist link rendered via Button1
classNamestringExtra classes for the outer <section>
ts
type Signature = {
  name: string;
  role: string;
  avatar: { src: string; alt: string };
};

type ActionLink = {
  label: string;
  href: string;
};

Behavior notes

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

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

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

comingsoon73

Sign The Wall Waitlist

An interactive waitlist coming-soon section with a monospace parenthetical eyebrow, a heading, a name and email form, and a live wall of member name chips that prepends your own entry on submit.

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

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.