Launch Day Announcement
A centered, editorial-style launch announcement built around an oversized date headline. A short kicker and supporting note frame the date, a Remind Me button sits below, and a three-column ruled list breaks down where, when, and what to expect.
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/launch-day-announcement.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon25.tsx instead.
Usage
The file also exports comingsoon25Demo, 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 { ComingSoon25, comingsoon25Demo } from "@/components/blocks/coming-soon/comingsoon25"; export default function Page() { return <ComingSoon25 {...comingsoon25Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | "Coming soon" | Small label above the kicker. |
| kicker | string | "Mark your calendar" | Short label above the date headline. |
| dateHeading | string | none | Oversized date headline, e.g. "March 12". |
| description | string | "We're pulling back the curtain..." | Supporting copy under the date headline. |
| reminderHref | string | "#" | Link target for the "Remind me" button. |
| facts | LaunchFact[] | none | Three-column ruled list of launch facts (label + value). |
| className | string | none | Extra classes for the outer section element. |
Types
export interface LaunchFact { label: string; value: string; }
Behavior notes
- Fully static server component: the "Remind me" button is a plain link (`render={<Link href={reminderHref} />}`), not a form submission.
- The three fact columns are a static, non-interactive ruled list rendered directly from the `facts` prop.
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.