interface MaintenanceProps { showActions?: boolean; } export function Maintenance(props: MaintenanceProps) { const { showActions = false } = props; return (
{/* Code */}

Maintenance

{/* Title */}

We'll Be Back Soon

{/* Description */}

Our system is currently undergoing scheduled maintenance. We are working hard to bring it back online as soon as possible.

{/* Optional Actions */} {showActions && (
Back to Home
)}
); }