We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1afd97d + dd6dc72 commit 986f220Copy full SHA for 986f220
package.json
@@ -29,6 +29,7 @@
29
"@radix-ui/react-slot": "^1.2.0",
30
"@tsparticles/react": "^3.0.0",
31
"@tsparticles/slim": "^3.8.1",
32
+ "@vercel/analytics": "^1.5.0",
33
"class-variance-authority": "^0.7.1",
34
"clsx": "^2.1.1",
35
"dotenv": "^16.5.0",
src/theme/Root.tsx
@@ -0,0 +1,12 @@
1
+import React from 'react';
2
+import { Analytics } from '@vercel/analytics/react';
3
+
4
+// Default implementation, that you can customize
5
+export default function Root({children}) {
6
+ return (
7
+ <>
8
+ {children}
9
+ <Analytics />
10
+ </>
11
+ );
12
+}
0 commit comments