import AuthLayoutTemplate from '@/layouts/auth/auth-simple-layout'; interface AuthLayoutProps { children: React.ReactNode; title: string; description: string; name?: string; logoSrc?: string; logoAlt?: string; } export default function AuthLayout({ children, title, description, name, logoSrc, logoAlt }: AuthLayoutProps) { return ( {children} ); }