feat: add fonts options

This commit is contained in:
Daniel Soares
2021-12-11 14:22:00 -03:00
parent cd8259a0a5
commit 47bd52ffd7
9 changed files with 38 additions and 11 deletions

View File

@@ -1,5 +1,8 @@
import type { AppProps } from 'next/app'
import { globalStyles } from '../styles/globals'
export default function App({ Component, pageProps }: AppProps) {
globalStyles()
return <Component {...pageProps} />
}