From 982401c4f95d9faaad71d44db083e602d4d1290d Mon Sep 17 00:00:00 2001 From: Brandon Saldan <26472557+brandonsaldan@users.noreply.github.com> Date: Thu, 26 Dec 2024 21:46:06 -0500 Subject: [PATCH] feat(analytics): add google analytics --- src/app/layout.tsx | 9 +++++---- src/components/google-analytics.tsx | 20 ++++++++++++++++++++ 2 files changed, 25 insertions(+), 4 deletions(-) create mode 100644 src/components/google-analytics.tsx diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6a70d7e..ca87f11 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,3 +1,4 @@ +import GoogleAnalytics from '@/components/google-analytics' import '@/styles/tailwind.css' import type { Metadata } from 'next' @@ -59,9 +60,6 @@ export const metadata: Metadata = { 'When Spotify ended support, we created a new beginning. Join our growing community of users giving their Car Thing a second life with our free, open source solution.', images: ['https://usenocturne.com/images/og-image.png'], }, - verification: { - google: 'G-YB8VYY7389', - }, other: { wikidata: 'Q131441227', wikipedia: 'https://wikipedia.org/wiki/Nocturne_(software)', @@ -187,7 +185,10 @@ export default function RootLayout({ }} /> -
{children} + +