Skip to content

Commit ffddf4d

Browse files
Merge branch 'prod' into staging
2 parents 4a2c2c9 + 78dbfe3 commit ffddf4d

3 files changed

Lines changed: 14 additions & 6 deletions

File tree

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
"pdfmake": "^0.2.20",
2727
"react": "^19.0.0",
2828
"react-dom": "^19.0.0",
29-
"react-icons": "^5.5.0",
3029
"tailwind-merge": "^3.3.0"
3130
},
3231
"devDependencies": {

src/app/layout.tsx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { Pangolin, Poppins, Inter } from "next/font/google";
22
import "./globals.css";
33
import SessionProviderWrapper from "./SessionProvider";
44
import ServiceWorkerRegister from "../components/ServiceWorkerRegister/ServiceWorkerRegister";
5+
import Script from "next/script";
56

67
const pangolin = Pangolin({
78
weight: "400",
@@ -63,6 +64,19 @@ export default function RootLayout({
6364
}: Readonly<{ children: React.ReactNode }>) {
6465
return (
6566
<html lang="en">
67+
<head>
68+
<Script
69+
async
70+
src="https://www.googletagmanager.com/gtag/js?id=G-ZC8LE59L8H"
71+
></Script>
72+
<Script id="google-analytics">
73+
{`window.dataLayer = window.dataLayer || [];
74+
function gtag(){dataLayer.push(arguments);}
75+
gtag('js', new Date());
76+
77+
gtag('config', 'G-ZC8LE59L8H');`}
78+
</Script>
79+
</head>
6680
<body
6781
className={`${pangolin.variable} ${poppins.variable} ${inter.variable} antialiased bg-[#CEE4E5] select-none`}
6882
>

yarn.lock

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3437,11 +3437,6 @@ react-dom@^19.0.0:
34373437
dependencies:
34383438
scheduler "^0.26.0"
34393439

3440-
react-icons@^5.5.0:
3441-
version "5.5.0"
3442-
resolved "https://registry.npmjs.org/react-icons/-/react-icons-5.5.0.tgz"
3443-
integrity sha512-MEFcXdkP3dLo8uumGI5xN3lDFNsRtrjbOEKDLD7yv76v4wpnEq2Lt2qeHaQOr34I/wPN3s3+N08WkQ+CW37Xiw==
3444-
34453440
react-is@^16.13.1:
34463441
version "16.13.1"
34473442
resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz"

0 commit comments

Comments
 (0)