import AppLogo from '@/components/app-logo'; import { Link } from '@inertiajs/react'; import Main from './main'; interface Props { title: string; description: string; children: React.ReactNode; } const AuthLayout = ({ children, title, description }: Props) => { return (

{title}

{description}

{children}
); }; export default AuthLayout;