diff options
| author | mihna123 <mihailonvojinovic@gmail.com> | 2026-06-03 16:45:26 +0200 |
|---|---|---|
| committer | mihna123 <mihailonvojinovic@gmail.com> | 2026-06-03 16:45:26 +0200 |
| commit | 728fb96a78b7808a87e52cbc2f4bb0cbfb4f0f74 (patch) | |
| tree | cdc361c3ad844b05edaa636e6c0ea28a2f849279 /src/app | |
| parent | 3f55acb7ec4810fa843297270ee1354e92cf641f (diff) | |
| download | invoice-728fb96a78b7808a87e52cbc2f4bb0cbfb4f0f74.tar.gz invoice-728fb96a78b7808a87e52cbc2f4bb0cbfb4f0f74.zip | |
feat: add google analytics script
Diffstat (limited to 'src/app')
| -rw-r--r-- | src/app/layout.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8630def..1a1dbf0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,5 +1,6 @@ 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({ @@ -29,6 +30,7 @@ export default function RootLayout({ > {children} </body> + <GoogleAnalytics gaId="G-PPNQQX1XCD" /> </html> ); } |
