mirror of
https://github.com/dathere/ckanaction.git
synced 2025-11-09 14:19:49 +00:00
26 lines
755 B
TypeScript
26 lines
755 B
TypeScript
import '@/app/global.css';
|
|
import { RootProvider } from 'fumadocs-ui/provider/next';
|
|
import { Inter } from 'next/font/google';
|
|
import Script from "next/script";
|
|
|
|
const inter = Inter({
|
|
subsets: ['latin'],
|
|
});
|
|
|
|
export default function Layout({ children }: LayoutProps<'/'>) {
|
|
return (
|
|
<html lang="en" className={inter.className} suppressHydrationWarning>
|
|
<body className="flex flex-col min-h-screen">
|
|
<RootProvider>{children}</RootProvider>
|
|
<Script
|
|
src="https://mk-analytics.dathere.com/api/script.js"
|
|
data-site-id="10"
|
|
data-session-replay="true"
|
|
data-track-errors="true"
|
|
data-web-vitals="true"
|
|
strategy="afterInteractive"
|
|
/>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|