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 { 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}</RootProvider>
|
||||
<RootProvider>
|
||||
{children}
|
||||
<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"
|
||||
/>
|
||||
</RootProvider>
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue