File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 25
25
"@tiptap/pm" : " ^2.11.5" ,
26
26
"@tiptap/react" : " ^2.11.5" ,
27
27
"@tiptap/starter-kit" : " ^2.11.5" ,
28
+ "@vercel/analytics" : " ^1.5.0" ,
28
29
"axios" : " ^1.8.3" ,
29
30
"class-variance-authority" : " ^0.7.1" ,
30
31
"clsx" : " ^2.1.1" ,
Original file line number Diff line number Diff line change 1
1
import { Inter } from 'next/font/google' ;
2
2
import './styles/app.css' ;
3
3
import { metadata } from './metadata' ;
4
+ import { Analytics } from "@vercel/analytics/react"
4
5
5
6
const inter = Inter ( { subsets : [ 'latin' ] } ) ;
6
7
@@ -10,7 +11,11 @@ export { metadata };
10
11
export default function RootLayout ( { children } ) {
11
12
return (
12
13
< html lang = "en" className = { inter . className } >
13
- < body className = "antialiased" > { children } </ body >
14
+ < body className = "antialiased" >
15
+ { children }
16
+
17
+ < Analytics />
18
+ </ body >
14
19
</ html >
15
20
)
16
21
}
You can’t perform that action at this time.
0 commit comments