interface MaintenanceProps { showActions?: boolean; } export function Maintenance(props: MaintenanceProps) { const { showActions = false } = props; return (
Maintenance
{/* Title */}Our system is currently undergoing scheduled maintenance. We are working hard to bring it back online as soon as possible.
{/* Optional Actions */} {showActions && ( )}