This commit is contained in:
skidoodle 2022-08-14 19:59:03 +02:00
parent 3a92d65900
commit 7dedfba1f9
31 changed files with 2971 additions and 1859 deletions

View file

@ -1,8 +1,21 @@
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>
<link rel='preconnect' href='https://vitals.vercel-insights.com' />
<meta name='title' content='albert' />
<meta name='og:title' content='albert' />
<meta name='description' content='system administrator' />
<meta name='og:description' content='system administrator' />
<meta name='theme-color' content='#000000' />
<meta property='og:image' content='/favicon.ico' />
</Head>
<Component {...pageProps} />
</>
)
}