import { ReactNode } from "react"; export function AuthLayout({ children }: { children: ReactNode }) { return (
{/* Auth UI has margin-top on title, so we lower the top padding */}
{children}
); }