This commit is contained in:
skidoodle 2022-08-15 15:21:27 +02:00
parent a93d09feb8
commit 84bf1b3815
4 changed files with 14 additions and 10 deletions

View file

@ -1,9 +1,15 @@
import 'styles/globals.scss'
import Head from 'next/head'
import { AppProps } from 'next/app'
export default function({ Component, pageProps }: AppProps) {
return (
<Component {...pageProps} />
<>
<Head>
<title>albert</title>
</Head>
<Component {...pageProps} />
</>
)
}