feat: remove ubuntu font

This commit is contained in:
Aaron Yarborough 2024-08-23 13:30:43 +01:00
parent e433d46cc4
commit cfedcc54a5

View file

@ -4,13 +4,9 @@ import style from './DefaultLayout.module.css'
import Header from '@/components/Header/Header'
import Footer from '@/components/Footer/Footer'
import { Ubuntu } from 'next/font/google'
const fontMain = Ubuntu({ subsets: ['latin'], weight: ['400', '500'] })
function DefaultLayout ({ children }) {
return (
<main className={`${style.layout} ${fontMain.className}`}>
<main className={`${style.layout}`}>
<Header />
<article>{children}</article>
<Footer />