Files
Blog/pages/_app.js
Antonello Zanini 9c3387c87a Comments updated
2022-11-18 15:24:52 +01:00

19 lines
428 B
JavaScript

import '../styles/globals.css'
import { Work_Sans } from '@next/font/google'
// importing the Work Sans font with
// the Next.js 13 Font Optimization Feature
const workSans = Work_Sans({
weight: ['400', '700'],
style: ['normal', 'italic'],
subsets: ['latin'],
})
function MyApp({ Component, pageProps }) {
return <main className={workSans.className}>
<Component {...pageProps} />
</main>
}
export default MyApp