blob: e89e51643cb288b149df3e9896a238709668fb17 (
plain) (
blame)
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
26
27
28
29
|
import { Html, Head, Main, NextScript } from "next/document";
export default function Document() {
return (
<Html lang="en">
<Head>
<link rel="manifest" href="/manifest.json" />
<link rel="apple-touch-icon" href="/icon.png" />
<meta name="theme-color" content="#141519" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog=="
crossOrigin="anonymous"
/>
<link rel="icon" href="/svg/c.svg" />
<meta name="apple-mobile-web-app-capable" content="yes"></meta>
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
></meta>
</Head>
<body>
<Main />
<NextScript />
</body>
</Html>
);
}
|