add analytics

This commit is contained in:
Aidan 2025-01-05 16:49:15 -05:00
parent a36504e62c
commit 54701b9634
2 changed files with 3 additions and 0 deletions

View File

@ -10,6 +10,7 @@
}, },
"dependencies": { "dependencies": {
"@fontsource-variable/manrope": "^5.1.1", "@fontsource-variable/manrope": "^5.1.1",
"@vercel/analytics": "^1.4.1",
"next": "15.1.3", "next": "15.1.3",
"react": "^19.0.0", "react": "^19.0.0",
"react-dom": "^19.0.0" "react-dom": "^19.0.0"

View File

@ -1,5 +1,6 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import '@fontsource-variable/manrope'; import '@fontsource-variable/manrope';
import { Analytics } from "@vercel/analytics/react"
import "./globals.css"; import "./globals.css";
export const metadata: Metadata = { export const metadata: Metadata = {
@ -16,6 +17,7 @@ export default function RootLayout({
<html lang="en"> <html lang="en">
<body> <body>
{children} {children}
<Analytics />
</body> </body>
</html> </html>
); );