add meta for docs

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-03-12 09:40:03 +01:00
parent 48edf599fb
commit 242dc2cf83
4 changed files with 10 additions and 9 deletions

View File

@@ -1,10 +1,14 @@
import type { AppProps } from 'next/app';
import Head from 'next/head';
import 'src/globals.css';
export default function App({ Component, pageProps }: AppProps) {
return (
<>
<Head>
<link rel="icon" href="/favicon.ico" />
</Head>
<Component {...pageProps} />
</>
);