blob: cfb045e25c8f97758aed192da9ca0a5511124cdb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
import '../styles/reset.css';
import '@fontsource/inconsolata/600.css';
import '@fontsource/inconsolata';
import '../styles/defaults.scss';
import type { AppProps } from 'next/app';
import Head from 'next/head';
import 'highlight.js/styles/github.css';
import '../components/Markdown/markdown.scss';
function MyApp({ Component, pageProps }: AppProps) {
return (
<>
<Head>
<title>flu0r1ne.net</title>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
</Head>
<Component {...pageProps} />
</>
);
}
export default MyApp;
|