|
|
@@ -6,7 +6,7 @@ import { getClientConfig } from "./config/client";
|
|
|
import type { Metadata, Viewport } from "next";
|
|
|
import { SpeedInsights } from "@vercel/speed-insights/next";
|
|
|
import { getServerSideConfig } from "./config/server";
|
|
|
-import { GoogleTagManager } from "@next/third-parties/google";
|
|
|
+import { GoogleTagManager, GoogleAnalytics } from "@next/third-parties/google";
|
|
|
const serverConfig = getServerSideConfig();
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
@@ -37,7 +37,10 @@ export default function RootLayout({
|
|
|
<html lang="en">
|
|
|
<head>
|
|
|
<meta name="config" content={JSON.stringify(getClientConfig())} />
|
|
|
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
|
+ <meta
|
|
|
+ name="viewport"
|
|
|
+ content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
|
|
|
+ />
|
|
|
<link rel="manifest" href="/site.webmanifest"></link>
|
|
|
<script src="/serviceWorkerRegister.js" defer></script>
|
|
|
</head>
|
|
|
@@ -53,6 +56,11 @@ export default function RootLayout({
|
|
|
<GoogleTagManager gtmId={serverConfig.gtmId} />
|
|
|
</>
|
|
|
)}
|
|
|
+ {serverConfig?.gaId && (
|
|
|
+ <>
|
|
|
+ <GoogleAnalytics gaId={serverConfig.gaId} />
|
|
|
+ </>
|
|
|
+ )}
|
|
|
</body>
|
|
|
</html>
|
|
|
);
|