Add umami analytics

This commit is contained in:
2025-10-12 17:36:07 +02:00
parent f9d89e4115
commit fd2fea478f
4 changed files with 15 additions and 8 deletions

View File

@@ -1,13 +1,9 @@
import { type ReactNode } from 'react';
import { Head } from '@inertiajs/react';
interface AppLayoutProps {
children: ReactNode;
}
export default ({ children }: AppLayoutProps) =>
(<>
<Head>
</Head>
{children}
</>);
export default ({ children }: AppLayoutProps) => {
return <>{children}</>;
};