import "./global.css"; import { RootProvider } from "fumadocs-ui/provider"; import { Inter } from "next/font/google"; import type { ReactNode } from "react"; import { GoogleAnalytics } from "@next/third-parties/google"; import { InkeepScript } from "./components/inkeep-script"; const inter = Inter({ subsets: ["latin"], }); export default function Layout({ children }: { children: ReactNode }) { return (