Skip to content

Commit

Permalink
Merge pull request #7 from Sebstep/dev
Browse files Browse the repository at this point in the history
Integrate Google Analytics (& update packages)
  • Loading branch information
Sebstep authored May 15, 2024
2 parents 762d936 + 26bd2a2 commit 4c4588f
Show file tree
Hide file tree
Showing 3 changed files with 552 additions and 504 deletions.
2 changes: 2 additions & 0 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { Inter } from "next/font/google";
import type { Metadata } from "next";
import Navigation from "@/components/Navigation";
import Footer from "@/components/Footer";
import { GoogleAnalytics } from "@next/third-parties/google";

const inter = Inter({ subsets: ["latin"] });

Expand All @@ -24,6 +25,7 @@ export default function RootLayout({ children }: { children: React.ReactNode })
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<GoogleAnalytics gaId="G-CCR887R8FM" />
</head>
<body className={inter.className}>
<Navigation />
Expand Down
33 changes: 17 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,28 +10,29 @@
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.12",
"@mui/icons-material": "^5.15.12",
"@mui/material": "^5.15.12",
"@emotion/styled": "^11.11.5",
"@fontsource/roboto": "^5.0.13",
"@mui/icons-material": "^5.15.17",
"@mui/material": "^5.15.17",
"@mui/material-next": "6.0.0-alpha.104",
"next": "14.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.0",
"@next/third-parties": "^14.2.3",
"next": "14.1.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.51.4",
"react-icons": "^4.12.0",
"zod": "^3.22.4"
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.11.25",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"autoprefixer": "^10.4.18",
"@types/node": "^20.12.12",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-next": "13.5.4",
"postcss": "^8.4.35",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.2"
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5"
}
}
Loading

0 comments on commit 4c4588f

Please sign in to comment.