feat: added analytics

This commit is contained in:
Riccardo
2023-12-02 11:27:25 +01:00
parent 77a9d50927
commit 527fc25c08
3 changed files with 18 additions and 1 deletions

View File

@@ -1,3 +1,4 @@
import { Analytics } from '@vercel/analytics/react';
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import './globals.css';
@@ -16,7 +17,10 @@ export default function RootLayout({
}) {
return (
<html lang='en'>
<body className={inter.className}>{children}</body>
<body className={inter.className}>
{children}
<Analytics />
</body>
</html>
);
}