Maintenance Window NoticeFREE

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.

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.

Free block

This block is free. No license or account is required: install it with the CLI and use it in unlimited projects.

Installation

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/comingsoon79"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/comingsoon79"

This installs the block to components/beste/block/comingsoon79.tsx, the indicator14 uptime piece it floats on the tile (installed to components/beste/piece/indicator14.tsx), and the badge23 and button21 components it uses for the eyebrow and the actions.

Quick start

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

tsx
import { Comingsoon79, comingsoon79Demo } from "@/components/beste/block/comingsoon79";

export default function MaintenancePage() {
  return <Comingsoon79 {...comingsoon79Demo} />;
}

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

tsx
import { Comingsoon79 } from "@/components/beste/block/comingsoon79";
import { Indicator14 } from "@/components/beste/piece/indicator14";

export default function MaintenancePage() {
  return (
    <Comingsoon79
      badge={{ label: "Scheduled maintenance" }}
      heading="Back at 06:00, and bookings are safe in the meantime"
      description="We are moving the scheduling database onto faster storage."
      details={[
        { label: "Window", value: "Sunday 02:00 to 06:00 UK" },
        { label: "Affected", value: "Web app and admin only" },
        { label: "Unaffected", value: "Member booking links and reminders" },
      ]}
      media={<Indicator14 title="Booking service" uptime="99.98%" range="Last 45 days" />}
      image={{ src: "/backdrops/green.jpg", alt: "Deep green gradient backdrop" }}
      buttons={[
        { label: "Follow the status page", href: "/status" },
        { label: "Read the change note", href: "/changelog" },
      ]}
      contactNote="If a clinic is opening inside this window, write to us."
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow above the heading, rendered through Badge23
headingstringNotice heading, rendered as the page h1
descriptionstringSupporting paragraph, capped at max-w-md
detailsDetailRow[][]Label and value pairs describing the window
mediaReactNodeLive asset on the tile, indicator14 in the demo
image{ src: string; alt: string }Backdrop behind the media tile
buttonsActionLink[][]Actions in source order, first solid and the rest outlined
contactNotestringEscalation line under the actions
classNamestringExtra classes for the outer section
ts
type ActionLink = {
  label: string;
  href: string;
};

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

Behavior notes

More Coming Soon blocks

View all Coming Soon
PRO

comingsoon20

Maintenance Back Soon

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.

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.

FREE

comingsoon1

Countdown Timer Launch

Coming soon section with a live countdown timer showing days, hours, minutes, and seconds until launch. Perfect for product launches, event announcements, or building anticipation for new features.

PRO

comingsoon22

Coming Soon Notify Page

A centered coming-soon launch page with a brand wordmark, a square eyebrow, an accent-highlighted heading, a working email notify form with a success state, a launch note, and a row of social 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.

FREE

comingsoon4

Animated Icons Preview

Coming soon section with floating animated icons and a pulsing status indicator using Framer Motion animations. Perfect for creating visual excitement and a dynamic atmosphere before a product launch.