Maintenance Back Soon
A centered "back soon" maintenance screen: a pulsing status dot, a monospace eyebrow, a heading, and a reassuring paragraph, followed by a ruled key-value list of status details (start time, expected return, current status) and a decorative status-page pill link.
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/maintenance-back-soon.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon20.tsx instead.
Usage
The file also exports comingsoon20Demo, 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 { ComingSoon20, comingsoon20Demo } from "@/components/blocks/coming-soon/comingsoon20"; export default function Page() { return <ComingSoon20 {...comingsoon20Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | "(under maintenance)" | Monospace label above the heading. |
| heading | string | "We'll be right back" | Main heading. |
| description | string | "We're performing some scheduled maintenance..." | Supporting reassurance copy. |
| statusItems | StatusDetail[] | none | Key-value rows rendered in the ruled details list. |
| statusPageLabel | string | "Status page" | Pill link label. |
| statusPageHref | string | "#" | Link target for the pill link. |
| className | string | none | Extra classes for the outer section element. |
Types
interface StatusDetail { label: string; value: string; }
Behavior notes
- Fully static Server Component: the pulsing status dot is pure CSS (animate-ping + a solid inner dot), no JavaScript timer drives it.
- The status-page link is a plain link (render={<Link href={statusPageHref} />}) with no onClick, nothing is submitted anywhere.
- Status detail values (start time, expected return, status) are static props, not computed from the current time.
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.