Add Microsoft Clarity tracking

This commit is contained in:
2569718930@qq.com
2026-06-24 16:25:49 +08:00
parent b8a1950932
commit 004439b736
3 changed files with 59 additions and 0 deletions
+2
View File
@@ -1,6 +1,7 @@
import type { Metadata } from "next";
import { Inter, JetBrains_Mono } from "next/font/google";
import { RegisterSW } from "@/components/dashboard/RegisterSW";
import { MicrosoftClarity } from "@/components/observability/MicrosoftClarity";
import "./globals.css";
const inter = Inter({
@@ -89,6 +90,7 @@ export default function RootLayout({
</a>
<main id="main-content">{children}</main>
<RegisterSW />
<MicrosoftClarity />
</body>
</html>
);