import { Link } from '@inertiajs/react'; import AppLogoIcon from '@/components/app-logo-icon'; import { LanguageSwitcher } from '@/components/language-switcher'; import { useTranslation } from '@/lib/translations'; import { home } from '@/routes'; import type { AuthLayoutProps } from '@/types'; export default function AuthSimpleLayout({ children, title, description, }: AuthLayoutProps) { const { t } = useTranslation(); return (
{t(title ?? '')}

{t(title ?? '')}

{t(description ?? '')}

{children}
); }