Add To Calendar Reminder
A centered coming-soon screen built around a launch date rather than a countdown: an oversized date heading sits under a kicker and monospace eyebrow, with a decorative "Add to calendar" pill button and a row of Google/Outlook/Apple calendar links below.
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/add-to-calendar-reminder.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon35.tsx instead.
Usage
The file also exports comingsoon35Demo, 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 { ComingSoon35, comingsoon35Demo } from "@/components/blocks/coming-soon/comingsoon35"; export default function Page() { return <ComingSoon35 {...comingsoon35Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | "(coming soon)" | Monospace label above the kicker. |
| kicker | string | "Mark your calendar" | Small uppercase label above the date. |
| launchDate | string | none | Launch date display text rendered as the oversized heading. |
| description | string | "We'll be live at the stroke of midnight..." | Supporting copy under the date. |
| addToCalendarLabel | string | "Add to calendar" | Label for the decorative add-to-calendar button. |
| addToCalendarHref | string | "#" | Link target for the add-to-calendar button. |
| className | string | none | Extra classes for the outer section element. |
Behavior notes
- Fully static, plain Server Component: no client-side state anywhere.
- "launchDate" is a plain display string supplied by the caller, not computed from `new Date()` at render time.
- The "Add to calendar" button and the Google/Outlook/Apple links are all decorative placeholder links (`href="#"` or a configurable placeholder href), no real .ics file is generated and nothing is submitted.
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.