import AuthLayoutTemplate from '@/pages/layouts/auth/AuthSimpleLayout'; export default function AuthLayout({ children, title, description, ...props }: { children: React.ReactNode; title: string; description: string }) { return ( {children} ); }