Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
TooTallNate committed Nov 26, 2024
1 parent 9de5847 commit e630f61
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions docs/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import './global.css';
import { RootProvider } from 'fumadocs-ui/provider';
import localFont from 'next/font/local'
import localFont from 'next/font/local';
import { GeistSans } from 'geist/font/sans';
import { GeistMono } from 'geist/font/mono';
import { Analytics } from '@vercel/analytics/react';
Expand All @@ -9,12 +9,15 @@ import type { ReactNode } from 'react';
const iconsFont = localFont({
src: './icons.woff2',
display: 'swap',
variable: '--font-icons'
variable: '--font-icons',
});

export default function Layout({ children }: { children: ReactNode }) {
return (
<html lang='en' className={`${GeistSans.variable} ${GeistMono.variable} ${iconsFont.variable}`}>
<html
lang='en'
className={`${GeistSans.variable} ${GeistMono.variable} ${iconsFont.variable}`}
>
<body>
<RootProvider>{children}</RootProvider>
<Analytics />
Expand Down

0 comments on commit e630f61

Please sign in to comment.