Countdown Timer Launch

Coming Soon

Something amazing is on the way

We're working hard to bring you something special. Stay tuned for the big reveal.

00Days
00Hours
00Minutes
00Seconds
About this block

Countdown Timer LaunchFREE

Coming soon section with a live countdown timer showing days, hours, minutes, and seconds until launch. Perfect for product launches, event announcements, or building anticipation for new features.

ComingSoon1: Countdown Timer Launch

Coming-soon hero with a real, ticking countdown: a useCountdown hook recomputes days, hours, minutes, and seconds against a target launchDate every second via setInterval, rendering four tabular-number tiles that count down live in the browser rather than showing a static snapshot.

Free block

This block is free. No license or account is required: install it with the CLI and use it in unlimited projects.

Installation

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/comingsoon1"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/comingsoon1"

This installs the block to components/beste/block/comingsoon1.tsx, plus the badge shadcn/ui primitive it uses for the eyebrow badge.

Quick start

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

tsx
import { ComingSoon1, comingsoon1Demo } from "@/components/beste/block/comingsoon1";

export default function ComingSoonPage() {
  return <ComingSoon1 {...comingsoon1Demo} />;
}

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

tsx
import { ComingSoon1 } from "@/components/beste/block/comingsoon1";

export default function ComingSoonPage() {
  return (
    <ComingSoon1
      badge={{ label: "Coming Soon", variant: "secondary" }}
      heading="Something amazing is on the way"
      description="We're working hard to bring you something special."
      launchDate="2026-08-01T09:00:00.000Z"
      showCountdown
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Section eyebrow badge
headingstringSection heading
descriptionstringSection intro text
launchDatestringISO date string the countdown ticks toward
showCountdownbooleantrueWhether the countdown tiles render at all
classNamestringExtra classes for the outer <section>

Behavior notes

  • The countdown is a real, live-updating timer: useCountdown calls calculateTimeLeft once immediately on mount, then again every 1000ms via setInterval, computing the difference between new Date(launchDate) and new Date() on each tick; the interval is cleared on unmount or whenever launchDate changes.
  • The four tiles only render when both showCountdown is true and launchDate is set; omitting either hides the countdown entirely while badge, heading, and description still render.
  • When launchDate is in the past (the computed difference is zero or negative), the hook clamps every field to zero and the tiles stay at 00.
  • Each value is zero-padded to two digits (padStart(2, "0")) and rendered with tabular-nums so the digits don't shift width as they tick down.
  • The packaged demo's launchDate is computed once at module load (Date.now() + 30 days), so the countdown always starts near 30 days remaining as of whenever the page or module was first evaluated, not relative to each individual page view.

More Coming Soon blocks

View all Coming Soon
PRO

comingsoon7

Launch Roadmap Timeline

Coming soon section with a vertical timeline showing launch phases, dates, and status indicators. Perfect for communicating a clear release plan and keeping users informed about upcoming milestones.

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

comingsoon14

Early Access Tiers

Coming soon section with tiered early access plans showing benefits, features, and availability for each level. Perfect for building a monetized waitlist with founding member perks.

FREE

comingsoon2

Development Progress Milestones

Coming soon section with a progress bar and milestone tracker showing development stages like Design, Backend, Frontend, and Testing. Perfect for keeping users informed about product development progress.

PRO

comingsoon25

Launch Day Announcement

An editorial launch-date announcement with a square eyebrow, a kicker, an oversized date headline paired with a supporting note and a dark seal remind-me button, above a three-column ruled list of launch facts.

PRO

comingsoon63

Product Pre-Order Teaser

A product launch coming-soon section with a full-height product image beside a monospace parenthetical eyebrow, a product name, a tagline, a ship date, a working notify email form, and a spec grid.