Skip to content

Commit 3ac4f32

Browse files
committed
0.0.13
1 parent e218d63 commit 3ac4f32

File tree

3 files changed

+40
-1
lines changed

3 files changed

+40
-1
lines changed

packages/website/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"start": "next start"
99
},
1010
"dependencies": {
11+
"@vercel/analytics": "^1.6.1",
1112
"lucide-react": "^0.564.0",
1213
"next": "16.1.6",
1314
"react": "19.2.3",

packages/website/src/app/layout.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import type { Metadata } from "next";
22
import { IBM_Plex_Mono } from "next/font/google";
3+
import { Analytics } from "@vercel/analytics/next";
34
import "./globals.css";
45

56
const ibmPlexMono = IBM_Plex_Mono({
@@ -29,7 +30,10 @@ export default function RootLayout({
2930
}>) {
3031
return (
3132
<html lang="en">
32-
<body className={`${ibmPlexMono.variable} antialiased`}>{children}</body>
33+
<body className={`${ibmPlexMono.variable} antialiased`}>
34+
{children}
35+
<Analytics />
36+
</body>
3337
</html>
3438
);
3539
}

pnpm-lock.yaml

Lines changed: 34 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)