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

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;