17 lines
290 B
JavaScript
17 lines
290 B
JavaScript
import Head from "next/head";
|
|
import "../styles/globals.scss";
|
|
|
|
function MyApp({ Component, pageProps }) {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<link rel="shortcut icon" href="/gractwo.svg" />
|
|
<title>Gractwo</title>
|
|
</Head>
|
|
<Component {...pageProps} />
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default MyApp;
|