aboutsummaryrefslogtreecommitdiff
path: root/src/app
diff options
context:
space:
mode:
authormihna123 <mihailonvojinovic@gmail.com>2026-06-03 17:00:50 +0200
committermihna123 <mihailonvojinovic@gmail.com>2026-06-03 17:00:50 +0200
commitc2d33aa0c52bc2bee61b0195c30e37f81cafa643 (patch)
treec359f4754f7be47469f634a44834c6e261d0e0fc /src/app
parent3627ead7da81bb3b9e6177c6b455d1d9f2cd78ba (diff)
downloadinvoice-c2d33aa0c52bc2bee61b0195c30e37f81cafa643.tar.gz
invoice-c2d33aa0c52bc2bee61b0195c30e37f81cafa643.zip
Revert "feat: add google analytics script"
This reverts commit 728fb96a78b7808a87e52cbc2f4bb0cbfb4f0f74.
Diffstat (limited to 'src/app')
-rw-r--r--src/app/layout.tsx2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 1a1dbf0..8630def 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,6 +1,5 @@
import type { Metadata } from 'next';
import { Geist, Geist_Mono } from 'next/font/google';
-import { GoogleAnalytics } from '@next/third-parties/google';
import './globals.css';
const geistSans = Geist({
@@ -30,7 +29,6 @@ export default function RootLayout({
>
{children}
</body>
- <GoogleAnalytics gaId="G-PPNQQX1XCD" />
</html>
);
}