Countdown Studio Card
A centered coming-soon screen on a soft muted card, built around a bold studio wordmark and a live countdown that ticks down days, hours, minutes, and seconds to a configurable launch date. A Reserve a Seat pill button sits below the countdown.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its button dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/countdown-studio-card.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon26.tsx instead.
Usage
The file also exports comingsoon26Demo, the exact props behind the preview above. Spread it to get a working section in one line, then replace it with your own data.
import { ComingSoon26, comingsoon26Demo } from "@/components/blocks/coming-soon/comingsoon26"; export default function Page() { return <ComingSoon26 {...comingsoon26Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | "(coming soon)" | Monospace parenthetical label above the wordmark. |
| wordmark | string | "Studio" | Bold brand wordmark. |
| heading | string | "We're building something new" | Main heading. |
| targetDate | string | none | ISO date string the countdown ticks down to. |
| reserveHref | string | "#" | Link target for the "Reserve a seat" button. |
| className | string | none | Extra classes for the outer section element. |
Behavior notes
- The countdown is real client state: an effect computes the remaining milliseconds every second (setInterval) from `targetDate`, no Date.now() or new Date() is ever called in the render path.
- Before the first tick fires, each unit renders a "--" placeholder so the server-rendered and first client-rendered markup match exactly, avoiding a hydration mismatch.
- The "Reserve a seat" pill button is a plain, decorative link (`render={<Link href={reserveHref} />}`), it has no separate client state of its own.
More Coming Soon Blocks
View all →countdown-timer-launch
Countdown Timer Launch
A centered launch page with a live days/hours/minutes/seconds countdown to a target date.
development-progress-milestones
Development Progress Milestones
A centered launch page with an overall progress bar and a milestone tracker list with status badges.
social-connect-launch
Social Connect Launch
A centered coming-soon page with pill-style outline buttons linking out to Twitter, GitHub, LinkedIn, and email.
animated-icons-preview
Animated Icons Preview
A centered coming-soon page with a row of bobbing icon tiles and a pulsing build-status indicator.
sneak-peek-feature-grid
Sneak Peek Feature Grid
A centered coming-soon page with a grid of blurred feature cards teased behind a lock icon overlay.
waitlist-with-avatars
Waitlist with Avatars
A centered coming-soon page with a working waitlist signup form, stacked subscriber avatars, and a live join count.