File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 11
11
"dependencies" : {
12
12
"@headlessui/react" : " ^2.2.0" ,
13
13
"@heroicons/react" : " ^2.1.5" ,
14
+ "@next/third-parties" : " ^15.0.3" ,
14
15
"next" : " 15.0.2" ,
15
16
"react" : " 19.0.0-rc-02c0e824-20241028" ,
16
17
"react-dom" : " 19.0.0-rc-02c0e824-20241028" ,
Original file line number Diff line number Diff line change @@ -2,11 +2,12 @@ import type { Metadata } from "next";
2
2
import "./globals.css" ;
3
3
import Header from "@/components/AppLayout/Header" ;
4
4
import Footer from "@/components/AppLayout/Footer" ;
5
+ import { GoogleAnalytics } from "@next/third-parties/google" ;
5
6
6
7
export const metadata : Metadata = {
7
8
title : {
8
- template : ' %s | Procedure' ,
9
- default : ' Home | Procedure' , // a default is required when creating a template
9
+ template : " %s | Procedure" ,
10
+ default : " Home | Procedure" , // a default is required when creating a template
10
11
} ,
11
12
description : "Think. Build. Measure." ,
12
13
} ;
@@ -22,6 +23,7 @@ export default function RootLayout({
22
23
< Header />
23
24
< main className = "pt-12" > { children } </ main >
24
25
< Footer />
26
+ < GoogleAnalytics gaId = "G-2KW21KL401" />
25
27
</ body >
26
28
</ html >
27
29
) ;
You can’t perform that action at this time.
0 commit comments