mirror of
https://github.com/dathere/ckanaction.git
synced 2025-12-18 16:29:25 +00:00
Compare commits
No commits in common. "b0f2d3e8de1558ea7dd42c5f4a7622719ce02e00" and "4b7ca4370963c57315a026e4a4e27589e866da8a" have entirely different histories.
b0f2d3e8de
...
4b7ca43709
1 changed files with 14 additions and 13 deletions
|
|
@ -1,24 +1,25 @@
|
|||
import "@/app/global.css";
|
||||
import { RootProvider } from "fumadocs-ui/provider/next";
|
||||
import { Inter } from "next/font/google";
|
||||
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"],
|
||||
subsets: ['latin'],
|
||||
});
|
||||
|
||||
export default function Layout({ children }: LayoutProps<"/">) {
|
||||
export default function Layout({ children }: LayoutProps<'/'>) {
|
||||
return (
|
||||
<html lang="en" className={inter.className} suppressHydrationWarning>
|
||||
<body className="flex flex-col min-h-screen">
|
||||
<RootProvider>
|
||||
{children}
|
||||
<Script
|
||||
src="https://mk-analytics.dathere.com/api/script.js"
|
||||
data-site-id="10"
|
||||
strategy="afterInteractive"
|
||||
/>
|
||||
</RootProvider>
|
||||
<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>
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue