Maintenance Window Notice

Scheduled Maintenance
503

We are rebuilding the engine while it is parked.

Everything is paused for a planned upgrade. Nothing was lost, and your data is exactly where you left it. Leave an address and we will ping you the second the doors reopen.

Paused since

14:00 UTC

Expected back

17:30 UTC

Affected

Dashboard and API

One message, sent once. We will not use your address for anything else.

About this block

Maintenance Window NoticePRO

Planned downtime page with a square eyebrow and status code, a bold accent headline, three bordered cells for the maintenance window, a working notify-me email form with a success state, and a live progress link.

Error17: Maintenance Window Notice

A planned-downtime page: three bordered cells state the maintenance window and what it affects, a working notify-me field collects an address for the all-clear, and a link points at live progress.

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/error17?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

This installs the block to components/beste/block/error17.tsx, plus the badge6 design-system primitive it renders the square eyebrow through.

Quick start

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

tsx
import { Error17, error17Demo } from "@/components/beste/block/error17";

export default function Maintenance() {
  return <Error17 {...error17Demo} />;
}

Then replace the demo with your own window. Times are plain strings, so the format and timezone stay yours:

tsx
import { Error17 } from "@/components/beste/block/error17";

export default function Maintenance() {
  return (
    <Error17
      label="Scheduled Maintenance"
      code="503"
      heading="We are rebuilding the engine <strong>while it is parked</strong>."
      description="Everything is paused for a planned upgrade. Your data is where you left it."
      labels={{
        placeholder: "Where should we write?",
        success: "Noted. You will hear from us the moment we are live again.",
        note: "One message, sent once.",
      }}
      stats={[
        { title: "Paused since", value: "14:00 UTC" },
        { title: "Expected back", value: "17:30 UTC" },
        { title: "Affected", value: "Dashboard and API" },
      ]}
      link={{ label: "Watch live progress", href: "/status" }}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow text rendered through the square-marker badge
codestringStatus code shown after the eyebrow divider
headingstringHeadline HTML, rendered as an h1; <strong> marks the accent clause
descriptionstringExplanatory paragraph under the headline
labelsError17Labels{}Field placeholder, success message, and the note under the form
statsWindowStat[][]Cells describing the maintenance window
linkActionLinkText link at the bottom of the block
classNamestringExtra classes for the outer <section>
ts
type Error17Labels = {
  placeholder?: string;
  success?: string;
  note?: string;
};

type WindowStat = {
  title: string;
  value: string;
};

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

Behavior notes

  • The email field is a controlled input inside a real form. Submitting prevents the default action and, when the value is not blank, swaps the whole form for the success message. There is no network call and no submit callback, so wire the address to your own list before shipping.
  • The success state is local to the mount and cannot be reversed from the UI: once submitted, the form, the placeholder and the note are gone for that visit.
  • The stats row is a three-column grid from the sm breakpoint up, so passing three cells fills a row exactly; fewer cells simply leave the row short.
  • The placeholder doubles as the field's aria-label, so the input is still named when the label text is the only thing describing it.
  • heading is injected with dangerouslySetInnerHTML and accepts inline HTML; <strong> takes the accent colour. Keep the value under your own control, never user input.

More Error blocks

View all Error
PRO

error22

Planned Downtime Window

Monochrome maintenance page: a parenthetical eyebrow over a display headline, the downtime window as a ruled three-column record, and a rounded notify-me field with a confirmed state.

PRO

error15

500 Incident Report

Server error page with a square eyebrow and status code over a hairline rule, a bold accent headline, a bordered incident table of reference, timestamp and service rows, and a retry seal button beside a status page link.

FREE

error35

Server Error With Live Status

A calm server-error page with a monospace code, an oversized light heading, recovery actions, an image tile floating a live uptime strip, and a hairline table carrying the incident reference.

PRO

error14

Editorial 404 Section Index

Editorial 404 with a square eyebrow and status code over a hairline rule, an oversized accent-highlighted headline, and a ruled index of the sections visitors reach for next.

PRO

error24

404 With Featured Work

Studio 404 that recovers a dead project URL: a square eyebrow and status code over a hairline rule, an accent headline and seal button, then two large project cards with category lines and hover arrow chips.

PRO

error25

Rate Limit Cooldown

Too-many-requests page with a square eyebrow and status code, an accent headline, three bordered usage cells, and a live cooldown counter that swaps itself for a retry seal button when it reaches zero.