Removed Google fonts

This commit is contained in:
Ipmake 2023-12-19 11:58:57 +00:00
parent 1e4b82bbdf
commit 84015d70f4
1 changed files with 1 additions and 4 deletions

View File

@ -1,9 +1,6 @@
import type { Metadata } from 'next' import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import './globals.css' import './globals.css'
const inter = Inter({ subsets: ['latin'] })
export const metadata: Metadata = { export const metadata: Metadata = {
title: 'DWLDash', title: 'DWLDash',
description: 'DWL dashboard', description: 'DWL dashboard',
@ -16,7 +13,7 @@ export default function RootLayout({
}) { }) {
return ( return (
<html lang="en"> <html lang="en">
<body className={inter.className}>{children}</body> <body>{children}</body>
</html> </html>
) )
} }