Compare commits

..

No commits in common. "b0f2d3e8de1558ea7dd42c5f4a7622719ce02e00" and "4b7ca4370963c57315a026e4a4e27589e866da8a" have entirely different histories.

View file

@ -1,24 +1,25 @@
import "@/app/global.css"; import '@/app/global.css';
import { RootProvider } from "fumadocs-ui/provider/next"; import { RootProvider } from 'fumadocs-ui/provider/next';
import { Inter } from "next/font/google"; import { Inter } from 'next/font/google';
import Script from "next/script"; import Script from "next/script";
const inter = Inter({ const inter = Inter({
subsets: ["latin"], subsets: ['latin'],
}); });
export default function Layout({ children }: LayoutProps<"/">) { export default function Layout({ children }: LayoutProps<'/'>) {
return ( return (
<html lang="en" className={inter.className} suppressHydrationWarning> <html lang="en" className={inter.className} suppressHydrationWarning>
<body className="flex flex-col min-h-screen"> <body className="flex flex-col min-h-screen">
<RootProvider> <RootProvider>{children}</RootProvider>
{children} <Script
<Script src="https://mk-analytics.dathere.com/api/script.js"
src="https://mk-analytics.dathere.com/api/script.js" data-site-id="10"
data-site-id="10" data-session-replay="true"
strategy="afterInteractive" data-track-errors="true"
/> data-web-vitals="true"
</RootProvider> strategy="afterInteractive"
/>
</body> </body>
</html> </html>
); );