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

{title}

{description}

{children}
VitoDeploy{' '} {page.props.version}
); }