mirror of
https://github.com/dathere/ckan-devstaller.git
synced 2025-11-09 13:39:49 +00:00
15 lines
460 B
TypeScript
15 lines
460 B
TypeScript
import "@/app/global.css";
|
|
import { RootProvider } from "fumadocs-ui/provider";
|
|
import localFont from "next/font/local";
|
|
|
|
const inter = localFont({ src: "../lib/inter.ttf" });
|
|
|
|
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>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|