diff --git a/src/app/layout.tsx b/src/app/layout.tsx index abfac06..260d603 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,9 +1,6 @@ import type { Metadata } from 'next' -import { Inter } from 'next/font/google' import './globals.css' -const inter = Inter({ subsets: ['latin'] }) - export const metadata: Metadata = { title: 'DWLDash', description: 'DWL dashboard', @@ -16,7 +13,7 @@ export default function RootLayout({ }) { return ( - {children} + {children} ) }