-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (47 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Zelda Map</title>
<meta name="description" content="A tool for Zelda 1 to track all your discoveries!" />
<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicons/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicons/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicons/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://zelda.rains.cafe" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Zelda Map" />
<meta property="og:description" content="A tool for Zelda 1 to track all your discoveries!" />
<meta
property="og:image"
content="https://raw.githubusercontent.com/ribbon-studios/logos/main/zelda-map/social-media.png"
/>
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="zelda.rains.cafe" />
<meta property="twitter:url" content="https://zelda.rains.cafe" />
<meta name="twitter:title" content="Zelda Map" />
<meta name="twitter:description" content="A tool for Zelda 1 to track all your discoveries!" />
<meta
name="twitter:image"
content="https://raw.githubusercontent.com/ribbon-studios/logos/main/zelda-map/social-media.png"
/>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap" rel="stylesheet" />
<style>
body {
background-color: #272727;
font-family: 'Ubuntu', sans-serif;
color: #ffffff;
margin: 0;
font-size: 15px;
text-align: center;
}
</style>
</head>
<body>
<div id="root"></div>
<script src="app/setup.tsx" type="module"></script>
<a style="display: none" href="/robots.txt" aria-label="robots"></a>
</body>
</html>