Skip to content

Commit 7a010a3

Browse files
committed
refactor: remove unused Inter import from layout.tsx
1 parent d477a07 commit 7a010a3

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

apps/site/app/layout.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
11
import { RootProvider } from 'fumadocs-ui/provider/next';
22
import './global.css';
3-
import { Inter } from 'next/font/google';
43
import { BetaBanner } from '@/components/beta-banner';
54

6-
const inter = Inter({
7-
subsets: ['latin'],
8-
});
9-
105
export default function Layout({ children }: LayoutProps<'/'>) {
116
return (
12-
<html lang="en" className={inter.className} suppressHydrationWarning>
7+
<html lang="en" suppressHydrationWarning>
138
<body className="flex flex-col min-h-screen">
149
<BetaBanner />
1510
<RootProvider>{children}</RootProvider>

0 commit comments

Comments
 (0)