We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1a135b2 + 11e5b31 commit fdb0983Copy full SHA for fdb0983
package.json
@@ -19,6 +19,7 @@
19
]
20
},
21
"dependencies": {
22
+ "@vercel/analytics": "^1.2.2",
23
"framer-motion": "^11.0.24",
24
"lucide-react": "^0.363.0",
25
"prismjs": "^1.29.0",
src/layouts/Page.tsx
@@ -3,6 +3,7 @@ import { ScrollRestoration } from 'react-router-dom'
3
import PageBackground from '../components/PageBackground'
4
import Nav from '../partials/Nav'
5
import Footer from '../partials/Footer'
6
+import { Analytics } from '@vercel/analytics/react'
7
8
function Page({ children }: PropsWithChildren<PageProps>) {
9
return (
@@ -14,6 +15,7 @@ function Page({ children }: PropsWithChildren<PageProps>) {
14
15
<Footer />
16
</div>
17
<ScrollRestoration />
18
+ <Analytics />
)
}
0 commit comments