import AppLogoIcon from '@/components/app-logo-icon'; import { type SharedData } from '@/types'; import { Link, usePage } from '@inertiajs/react'; import { type PropsWithChildren } from 'react'; interface AuthLayoutProps { title?: string; description?: string; } export default function AuthSplitLayout({ children, title, description }: PropsWithChildren) { const appName = 'MEMEFAST'; return (
{appName}

{title}

{description}

{children}
); }