-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path_document.js
137 lines (132 loc) · 4.35 KB
/
_document.js
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
import Document, { Html, Head, Main, NextScript } from "next/document";
class MyDocument extends Document {
static async getInitialProps(ctx) {
const initialProps = await Document.getInitialProps(ctx);
return { ...initialProps };
}
render() {
return (
<Html lang="en">
<Head>
{/* base */}
<meta charSet="utf-8" />
<meta httpEquiv="x-ua-compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="A web player that plays some cool MOD files randomly 🎶"
/>
{/* twitter */}
<meta name="twitter:card" content="summary" />
<meta name="twitter:url" content="https://coolmodfiles.com/" />
<meta name="twitter:title" content="CoolModFiles" />
<meta
name="twitter:description"
content="A web player that plays some cool MOD files randomly 🎶"
/>
<meta
name="twitter:image"
content="https://coolmodfiles.com/favicon-310.png"
/>
<link rel="manifest" href="/manifest.json" />
<meta name="theme-color" content="#fff" />
<meta name="application-name" content="CoolModFiles" />
<meta name="apple-mobile-web-app-title" content="CoolModFiles" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="default"
/>
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="icon" sizes="16x16 32x32 64x64" href="/favicon.ico" />
<link
rel="icon"
type="image/png"
sizes="196x196"
href="/favicon-192.png"
/>
<link
rel="icon"
type="image/png"
sizes="160x160"
href="/favicon-160.png"
/>
<link
rel="icon"
type="image/png"
sizes="96x96"
href="/favicon-96.png"
/>
<link
rel="icon"
type="image/png"
sizes="64x64"
href="/favicon-64.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon-32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/favicon-16.png"
/>
<link rel="apple-touch-icon" href="/favicon-57.png" />
<link
rel="apple-touch-icon"
sizes="114x114"
href="/favicon-114.png"
/>
<link rel="apple-touch-icon" sizes="72x72" href="/favicon-72.png" />
<link
rel="apple-touch-icon"
sizes="144x144"
href="/favicon-144.png"
/>
<link rel="apple-touch-icon" sizes="60x60" href="/favicon-60.png" />
<link
rel="apple-touch-icon"
sizes="120x120"
href="/favicon-120.png"
/>
<link rel="apple-touch-icon" sizes="76x76" href="/favicon-76.png" />
<link
rel="apple-touch-icon"
sizes="152x152"
href="/favicon-152.png"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/favicon-180.png"
/>
<meta name="msapplication-TileColor" content="#000000" />
<meta name="msapplication-TileImage" content="/favicon-144.png" />
<meta name="msapplication-config" content="/browserconfig.xml" />
<script
async
src="https://umami.orhun.dev/script.js"
data-website-id="1f72dec7-782c-474c-9222-a7652f8e9b5f"
></script>
<script src="/chiptune2.js"></script>
<script src="/libopenmpt.js"></script>
<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=Press+Start+2P&display=swap"
rel="stylesheet"
/>
</Head>
<body>
<Main />
<NextScript />
</body>
</Html>
);
}
}
export default MyDocument;