import type React from 'react' export function AuthLayout({ children }: { children: React.ReactNode }) { return (
{children}
) }