feat: update dependencies to Next.js 15.4.5 and integrate Google Analytics from @next/third-parties

This commit is contained in:
Mauricio Siu
2025-08-04 00:07:08 -06:00
parent 0331522f50
commit df7fa3c951
5 changed files with 349 additions and 51 deletions

View File

@@ -4,6 +4,8 @@ import { NextIntlClientProvider } from "next-intl";
import { getMessages } from "next-intl/server";
import { Inter, Lexend } from "next/font/google";
import type { ReactNode } from "react";
import { GoogleAnalytics } from "@next/third-parties/google";
type Props = {
children: ReactNode;
};
@@ -61,6 +63,7 @@ export default async function RootLayout({
)}
>
<body>
<GoogleAnalytics gaId="G-0RTZ5EPB26" />
<NextIntlClientProvider messages={messages}>
{children}
</NextIntlClientProvider>