mirror of
https://github.com/dathere/ckanaction.git
synced 2025-12-18 16:29:25 +00:00
Compare commits
2 commits
4b7ca43709
...
b0f2d3e8de
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b0f2d3e8de | ||
|
|
663f208a4a |
1 changed files with 13 additions and 14 deletions
|
|
@ -1,25 +1,24 @@
|
||||||
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>{children}</RootProvider>
|
<RootProvider>
|
||||||
<Script
|
{children}
|
||||||
src="https://mk-analytics.dathere.com/api/script.js"
|
<Script
|
||||||
data-site-id="10"
|
src="https://mk-analytics.dathere.com/api/script.js"
|
||||||
data-session-replay="true"
|
data-site-id="10"
|
||||||
data-track-errors="true"
|
strategy="afterInteractive"
|
||||||
data-web-vitals="true"
|
/>
|
||||||
strategy="afterInteractive"
|
</RootProvider>
|
||||||
/>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue