Skip to content

Commit fce3fa4

Browse files
committed
feat: install & configure va
1 parent 789f7b4 commit fce3fa4

File tree

3 files changed

+37
-0
lines changed

3 files changed

+37
-0
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
"@rainbow-me/rainbowkit": "^2.2.1",
3535
"@t3-oss/env-nextjs": "^0.11.1",
3636
"@tanstack/react-query": "^5.62.3",
37+
"@vercel/analytics": "^1.4.1",
3738
"class-variance-authority": "^0.7.1",
3839
"clsx": "^2.1.1",
3940
"framer-motion": "^11.13.1",

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.

src/app/layout.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import React from 'react';
66
import type { Metadata, Viewport } from 'next';
77

88
import config from '_config';
9+
import { Analytics } from '@vercel/analytics/react';
910

1011
import Footer from '@/components/footer';
1112
import GithubCorner from '@/components/github-corner';
@@ -44,6 +45,7 @@ export default function RootLayout({ children }: { children: React.ReactNode })
4445
</div>
4546
</WithSupportedChains>
4647

48+
<Analytics />
4749
<Toaster richColors closeButton pauseWhenPageIsHidden />
4850
</RootProvider>
4951
</body>

0 commit comments

Comments
 (0)