Maintenance Back SoonPRO

A centered scheduled-maintenance section with a pulsing status dot, a monospace parenthetical eyebrow, a large heading, a reassuring paragraph, a ruled key-value list of status details, and a status-page pill button.

ComingSoon20: Maintenance Back Soon

A monochrome, editorial scheduled-maintenance section from the Auralis set that centers a pulsing status dot beside a parenthetical eyebrow, a large heading, a reassuring paragraph, a ruled key-value list of status details, and a status-page pill button.

Upgrade to Pro

Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.

Upgrade Now

Installation

Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/comingsoon20?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/comingsoon20?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/comingsoon20.tsx.

Quick start

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

tsx
import { ComingSoon20, comingsoon20Demo } from "@/components/beste/block/comingsoon20";

export default function Page() {
  return <ComingSoon20 {...comingsoon20Demo} />;
}

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

tsx
import { ComingSoon20 } from "@/components/beste/block/comingsoon20";

export default function Page() {
  return (
    <ComingSoon20
      badge={{ label: "Scheduled maintenance" }}
      heading="We're offline for a short, deliberate upgrade."
      description="We're moving to faster hardware. Nothing you've saved is affected."
      details={[
        { label: "Current status", value: "Migrating to new infrastructure" },
        { label: "Expected back", value: "Today, around 18:00 UTC" },
        { label: "Your work", value: "Untouched, backed up, and safe" },
      ]}
      button={{ label: "Watch the status page", href: "/status" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow badge rendered beside the pulsing dot via Badge7
headingstringLarge centered heading under the status row
descriptionstringReassuring paragraph under the heading
detailsDetailItem[][]Status details rendered as a ruled key-value list
buttonActionLinkStatus-page link rendered via Button12
classNamestringExtra classes for the outer <section>
ts
type Badge = {
  label: string;
};

type ActionLink = {
  label: string;
  href: string;
};

type DetailItem = {
  label: string;
  value: string;
};

Behavior notes

More Coming Soon blocks

View all Coming Soon
PRO

comingsoon32

Trusted By Waitlist

A centered pre-launch section with a monospace parenthetical eyebrow, a statement heading, a supporting paragraph, a waitlist pill button, and a captioned grayscale logo strip of early partners.

FREE

comingsoon79

Maintenance Window Notice

A scheduled downtime notice with a light heading, a hairline table of what is affected and what is not, two actions, and an image tile floating a live uptime strip.

PRO

comingsoon35

Add To Calendar Reminder

A centered launch-reminder section with a monospace parenthetical eyebrow, a kicker, an oversized launch-date heading, a supporting line, an add-to-calendar pill button, and a row of calendar-provider links.

PRO

comingsoon50

Launch Readiness Progress

A coming-soon section on a soft muted card with a monospace parenthetical eyebrow, a heading, a launch-readiness percentage that counts up with an animated progress bar, a build-status row, and a working email notify form.

PRO

comingsoon15

Waitlist Coming Soon

A centered pre-launch section with an eyebrow, a large light heading, a paragraph, an image tile holding a working email-capture form with a success state, and a social-proof note.

PRO

comingsoon8

Readiness Status Dashboard

Coming soon section with a status dashboard displaying service readiness with color-coded indicators for ready, in-progress, and planned states. Perfect for transparent launch communication.