We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e627c4 commit 11c9484Copy full SHA for 11c9484
apps/site/app/layout.tsx
@@ -1,16 +1,12 @@
1
import { RootProvider } from 'fumadocs-ui/provider/next';
2
import './global.css';
3
// AG Grid styles - required for plugin-aggrid demos
4
-import { Inter } from 'next/font/google';
5
import { ObjectUIProvider } from '@/app/components/ObjectUIProvider';
6
7
-const inter = Inter({
8
- subsets: ['latin'],
9
-});
10
11
export default function Layout({ children }: LayoutProps<'/'>) {
12
return (
13
- <html lang="en" className={inter.className} suppressHydrationWarning>
+ <html lang="en" suppressHydrationWarning>
14
<body className="flex flex-col min-h-screen">
15
<RootProvider>
16
<ObjectUIProvider>{children}</ObjectUIProvider>
0 commit comments