import React from "react" export default function SignupLayout({ children, }: { children: React.ReactNode }) { if (process.env.SIGNUP_ENABLED === "false") { return
Signup is disabled
} else if (process.env.SIGNUP_ENABLED === "true") { return (
{children}
) } else { return
Invalid SIGNUP_ENABLED environment variable
} }