We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9e63ae commit 2eb04adCopy full SHA for 2eb04ad
docs-v2/app/layout.tsx
@@ -3,6 +3,7 @@ import { Provider } from "./provider";
3
import { GeistSans } from "geist/font/sans";
4
import type { ReactNode } from "react";
5
import type { Metadata, Viewport } from "next";
6
+import Script from "next/script";
7
8
export const metadata: Metadata = {
9
title: {
@@ -77,6 +78,12 @@ export default function Layout({ children }: { children: ReactNode }) {
77
78
</head>
79
<body className="flex flex-col min-h-screen">
80
<Provider>{children}</Provider>
81
+ {/* 100% privacy-first analytics */}
82
+ <Script
83
+ data-collect-dnt="true"
84
+ async
85
+ src="https://sa.portr.dev/latest.js"
86
+ />
87
</body>
88
</html>
89
);
0 commit comments