Removed Google fonts
This commit is contained in:
parent
1e4b82bbdf
commit
84015d70f4
@ -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 (
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}</body>
|
||||
<body>{children}</body>
|
||||
</html>
|
||||
)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user