nyuchimzizi
Mzizi — an open-architecture project of the Bundu Foundation, operated and developed by Nyuchi. Built on the Five African Minerals palette.
Built by Nyuchi Africav4.0.39
Full-page maintenance mode display with estimated return time.
View the full component source code below.
import * as React from "react"
import { cn } from "@/lib/utils"
function MaintenancePage({
title = "Under Maintenance",
description = "We're performing scheduled maintenance. We'll be back shortly.",
estimatedReturn,
className,
...props
}: {
title?: string
description?: string
estimatedReturn?: string
} & React.ComponentProps<"div">) {
return (
<div
data-slot="maintenance-page" data-portal="https://design.nyuchi.com/components/maintenance-page"
className={cn(
"flex min-h-screen flex-col items-center justify-center gap-6 bg-background px-4 text-center",
className
)}
{...props}
>
{/* Mineral accent bar */}
<div className="flex gap-1">
<div className="h-1 w-8 rounded-full bg-[var(--color-primary, var(--color-cobalt, #00B0FF))]" />
<div className="h-1 w-8 rounded-full bg-[var(--color-accent, var(--color-tanzanite, #B388FF))]" />
<div className="h-1 w-8 rounded-full bg-[var(--status-success, var(--color-malachite, #64FFDA))]" />
<div className="h-1 w-8 rounded-full bg-[var(--status-warning, var(--color-gold, #FFD740))]" />
<div className="h-1 w-8 rounded-full bg-[var(--status-error, var(--color-terracotta, #D4A574))]" />
</div>
{/* Nyuchi mark */}
<span className="font-serif text-4xl font-bold text-foreground">m</span>
<div className="flex max-w-md flex-col gap-2">
<h1 className="font-serif text-2xl font-bold text-foreground">{title}</h1>
<p className="text-sm text-muted-foreground">{description}</p>
{estimatedReturn && (
<p className="mt-2 text-xs text-muted-foreground">
Estimated return: <span className="font-medium text-foreground">{estimatedReturn}</span>
</p>
)}
</div>
</div>
)
}
export { MaintenancePage }
npx shadcn@latest add https://mzizi.dev/api/v1/ui/maintenance-pageFetch this component's metadata and source code from the registry API.
/api/v1/ui/maintenance-pagecomponents/ui/maintenance-page.tsx