analytics added

This commit is contained in:
Owen Rees
2023-06-13 22:01:30 +02:00
parent 6ecd831b94
commit 35930257e2
3 changed files with 13 additions and 1 deletions
+6 -1
View File
@@ -1,3 +1,5 @@
import { Analytics } from "@vercel/analytics/react";
import "./globals.css";
import { Inter } from "next/font/google";
@@ -15,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>
);
}