-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (65 loc) · 2.57 KB
/
index.html
File metadata and controls
68 lines (65 loc) · 2.57 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="/logo.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<!-- Primary Meta Tags -->
<title>Geo Locator</title>
<meta name="title" content="Geo Locator" />
<meta
name="description"
content="Geo Locator is a free to play GeoGuessr clone. Play by yourself or with your friends on different maps."
/>
<meta
name="keywords"
content="geoguessr, free, clone, geolocator, geoguesser, geo, guesser, web game, online, friends"
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://geolocator.alexcrow.dev/" />
<meta property="og:title" content="Geo Locator" />
<meta
property="og:description"
content="Geo Locator is a free to play GeoGuessr clone. Play by yourself or with your friends on different maps."
/>
<meta property="og:image" content="" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://geolocator.alexcrow.dev/" />
<meta property="twitter:title" content="Geo Locator" />
<meta
property="twitter:description"
content="Geo Locator is a free to play GeoGuessr clone. Play by yourself or with your friends on different maps."
/>
<meta property="twitter:image" content="" />
<meta name="author" content="RasterCrow" />
<link rel="apple-touch-icon" href="/logo.ico" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="/manifest.json" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
/>
<link
rel="stylesheet"
href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin=""
/>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="./src/index.jsx"></script>
</body>
</html>