import { AuthRedirect } from '@/components/auth/AuthRedirect'; export default function AuthLayout({ children, }: { children: React.ReactNode; }) { return (
{/* Левая колонка — пустая, фон как у body */}
Uchill Logo
{/* Правая колонка — форма на белом фоне */}
Uchill Logo
{children}
); }