refactor: Add @vercel/analytics dependency and integrate Analytics component in layout

This commit is contained in:
2025-10-16 12:57:54 +02:00
parent a310fe9564
commit ac52eaf984
3 changed files with 37 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { Analytics } from "@vercel/analytics/next"
const geistSans = Geist({
variable: "--font-geist-sans",
@@ -29,6 +30,7 @@ export default function RootLayout({
>
{children}
</body>
<Analytics />
</html>
);
}