This repository has been archived on 2026-03-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
gractwo-pl/pages/_app.js
2022-05-08 22:59:03 +02:00

23 lines
558 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>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin />
<link
href="https://fonts.googleapis.com/css2?family=Lexend:wght@600&display=swap"
rel="stylesheet"
></link>
</Head>
<Component {...pageProps} />
</>
);
}
export default MyApp;