provisional favicon & website title

This commit is contained in:
2022-05-06 18:52:27 +02:00
parent 4c70e7af10
commit 3a2f1ea318

View File

@@ -1,7 +1,16 @@
import Head from "next/head";
import "../styles/globals.scss";
function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />;
return (
<>
<Head>
<link rel="shortcut icon" href="/gractwo.svg" />
<title>Gractwo</title>
</Head>
<Component {...pageProps} />
</>
);
}
export default MyApp;