import AppLogoIcon from '@/components/app-logo-icon'; import type { AuthLayoutProps } from '@/types'; import { Link, usePage } from '@inertiajs/react'; export default function AuthSplitLayout({ children, title, description, }: AuthLayoutProps) { const { name } = usePage().props; return (

{title}

{description}

{children}
); }