import { Link } from '@inertiajs/react'; import { type PropsWithChildren } from 'react'; import { AppLogoIcon } from '@/common/AppLogoIcon'; import { home } from '@/routes'; interface AuthLayoutProps { name?: string; title?: string; description?: string; } export default function AuthSimpleLayout({ children, title, description }: PropsWithChildren) { return (
{title}

{title}

{description}

{children}
); }