This commit is contained in:
skidoodle 2022-04-24 17:41:31 +02:00
parent 4ef7a49d93
commit 3c18df552d
13 changed files with 227 additions and 198 deletions

View file

@ -1,8 +1,12 @@
import type { AppProps } from 'next/app'
import { AppProps } from 'next/app'
import Head from 'next/head'
import 'styles/globals.scss'
const MyApp = ({ Component, pageProps }: AppProps) => {
<Head>
<title>albert</title>
</Head>
return <Component {...pageProps} />
}
export default MyApp
export default MyApp