import type { PropsWithChildren } from 'react';

export default function MaintenanceLayout({ children }: PropsWithChildren) {
    return (
        <div className="flex min-h-screen min-h-svh items-center justify-center bg-background px-6 py-10">
            <div className="w-full max-w-[50vw] min-w-[min(100%,18rem)] text-center">{children}</div>
        </div>
    );
}
