-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
71 lines (71 loc) · 2.57 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/x-icon" href="/mapstery_favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<title>Mapstery | Geography Quest</title>
<meta
name="description"
content="Master geography, one click at a time. A challenging geography game for map lovers."
/>
<meta property="og:type" content="website" />
<meta property="og:title" content="Mapstery | Geography Quest" />
<meta
property="og:image"
itemprop="image"
content="https://mapstery.world/open_graph_image_landscape.png"
/>
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="632" />
<meta
property="og:image"
itemprop="image"
content="https://mapstery.world/open_graph_image_square.png"
/>
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="300" />
<meta property="og:image:height" content="300" />
<meta
property="og:description"
content="Master geography, one click at a time. A challenging geography game for map lovers."
/>
<meta property="og:url" content="https://mapstery.world" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "SoftwareApplication",
"applicationCategory": "GameApplication",
"operatingSystem": "All",
"name": "MAPSTERY",
"description": "Master geography, one click at a time. A challenging geography game for map lovers.",
"url": "https://mapstery.world",
"image": "https://mapstery.world/open_graph_image_landscape.png"
}
</script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/purecss@3.0.0/build/pure-min.css"
integrity="sha384-X38yfunGUhNzHpBaEBsWLO+A0HDYOQi8ufWDkZ0k9e0eXz/tH3II7uKZ9msv++Ls"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css?family=Dosis"
rel="stylesheet"
type="text/css"
/>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>