From a302ff74db531b26331e2af7d1b226056ca1b9c4 Mon Sep 17 00:00:00 2001 From: Lucas Delobelle Date: Tue, 12 Nov 2024 09:27:02 +0100 Subject: [PATCH] :chart_with_upwards_trend: add Umami analytics --- src/app/layout.tsx | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8b095f7..34737c9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -3,7 +3,7 @@ import { Raleway } from "next/font/google"; import "./globals.css"; import { ThemeProvider } from "next-themes"; import GithubIcon from "@/components/utils/GithubIcon"; -import { Analytics } from "@vercel/analytics/react"; +import Script from "next/script"; const inter = Raleway({ subsets: ["latin"] }); @@ -19,6 +19,14 @@ export default function RootLayout({ }>) { return ( + + @@ -31,7 +39,6 @@ export default function RootLayout({ - );