Countdown Clock Waitlist

Launching Soon

The doors to Polaris open when the clock hits zero.

One workspace for your whole team, minus the clutter. Join before launch and lock in founder pricing for good.

00

Days

00

Hours

00

Minutes

00

Seconds

Waitlist member portraitWaitlist member portraitWaitlist member portraitWaitlist member portrait

3,400+ teams already counting down

About this block

Countdown Clock WaitlistPRO

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.

ComingSoon36: Countdown Clock Waitlist

A centered pre-launch section built on a single accent color, with a square eyebrow, an accent-highlighted heading, a large colon-separated live countdown clock, a working email-capture form that swaps to a success state, and an avatar social-proof row.

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

Base UI flavor

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

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

Quick start

The installed file exports comingsoon36Demo alongside the block: the exact props behind the preview above. Spread it to get a working countdown page in one line.

tsx
import { ComingSoon36, comingsoon36Demo } from "@/components/beste/block/comingsoon36";

export default function Page() {
  return <ComingSoon36 {...comingsoon36Demo} />;
}

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

tsx
import { ComingSoon36 } from "@/components/beste/block/comingsoon36";

export default function Page() {
  return (
    <ComingSoon36
      label="Launching Soon"
      heading="The doors to <strong>Polaris</strong> open when the clock hits zero."
      description="One workspace for your whole team, minus the clutter."
      targetDate="2026-10-24T09:00:00Z"
      avatars={[
        { src: "/people/ava.jpg", alt: "Waitlist member portrait" },
        { src: "/people/theo.jpg", alt: "Waitlist member portrait" },
      ]}
      labels={{
        daysLabel: "Days",
        hoursLabel: "Hours",
        minutesLabel: "Minutes",
        secondsLabel: "Seconds",
        placeholder: "Enter your work email",
        success: "You're on the list. We'll open the doors to you first.",
        proof: "3,400+ teams already counting down",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringSquare eyebrow rendered above the heading via Badge6
labelsComingSoon36Labels{}Unit labels for the clock plus the form placeholder, success, and proof strings
headingstringHeading rendered as HTML so a <strong> span picks up the accent color
descriptionstringSupporting paragraph under the heading
targetDatestringTarget date string parsed by new Date that the clock counts down to
avatarsAvatarItem[][]Overlapping avatar stack shown as social proof
classNamestringExtra classes for the outer <section>
ts
type ComingSoon36Labels = {
  daysLabel?: string;
  hoursLabel?: string;
  minutesLabel?: string;
  secondsLabel?: string;
  placeholder?: string;
  success?: string;
  proof?: string;
};

type AvatarItem = {
  src: string;
  alt: string;
};

Behavior notes

  • The email form owns its input 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 countdown starts at zero on every unit and only begins ticking on the client: a useEffect parses targetDate, then a one-second setInterval recomputes days, hours, minutes, and seconds from the clamped positive difference, so the initial server render always shows 00:00:00:00.
  • Each unit is zero-padded to two digits with padStart, and colon separators are drawn between units (rendered for every unit except the first), so the clock reads as 00:00:00:00.
  • The heading is injected with dangerouslySetInnerHTML, and a [&>strong]:text-primary rule tints any <strong> in the string with the accent color; other tags render as raw HTML, so keep the markup to trusted content.
  • The form, avatar stack, and proof line are all hidden once submitted, leaving only the centered success panel; the proof row itself renders when either avatars is non-empty or proof is set.
  • The avatars render as a -space-x-3 overlapping stack of plain <img> elements with border-background rings.

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

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

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

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

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.

PRO

comingsoon45

Animated Waitlist Stats

A centered pre-launch section with a square eyebrow, a heading, a supporting line, a row of accent statistics that count up when scrolled into view, and a dark seal claim-seat button.