This commit is contained in:
arch0Xd 2022-08-14 17:33:43 +02:00
parent 3a92d65900
commit af344d5fcd
32 changed files with 2604 additions and 2724 deletions

View file

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