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

{title}

{description}

{children}
); }