-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (94 loc) · 3.49 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes" />
<title>Utils</title>
<meta name="description" content="Local only implementation of your favorite tools." />
<meta name="keyword" content="terminal, utils, local" />
<link rel="apple-touch-icon" sizes="180x180" href="./images/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="./images/favicon-16.png" />
<!-- See https://goo.gl/OOhYW5 -->
<link rel="manifest" href="./manifest.webmanifest" />
<!-- Add to homescreen for Chrome on Android. Fallback for manifest.json -->
<meta name="mobile-web-app-capable" content="yes" />
<meta name="application-name" content="Utils" />
<!-- Add to homescreen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="Utils" />
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://utils.rains.cafe" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Utils" />
<meta property="og:description" content="Local only implementation of your favorite tools." />
<meta
property="og:image"
content="https://raw.githubusercontent.com/ribbon-studios/logos/main/utils/social-media.png"
/>
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="utils.rains.cafe" />
<meta property="twitter:url" content="https://utils.rains.cafe" />
<meta name="twitter:title" content="Utils" />
<meta name="twitter:description" content="Local only implementation of your favorite tools." />
<meta
name="twitter:image"
content="https://raw.githubusercontent.com/ribbon-studios/logos/main/utils/social-media.png"
/>
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono|Roboto+Slab" rel="stylesheet" />
<style>
body {
margin: 0;
font-family: 'Roboto', 'Noto', sans-serif;
line-height: 1.5;
height: 100%;
min-height: 100vh;
background-color: #2f3640;
color: #f5f6fa;
}
body[unresolved] #root {
opacity: 0;
}
#root {
transition: opacity ease-in-out 0.5s;
opacity: 1;
}
body.invalid-browser > .unsupported {
display: block;
}
body > .unsupported {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
font-size: 24px;
}
body > .unsupported > img {
height: 260px;
}
body > .unsupported > h1 {
font-size: 30px;
margin: 0;
font-weight: lighter;
}
body > .unsupported a {
color: inherit;
}
</style>
</head>
<body unresolved>
<div id="root"></div>
<div class="unsupported">
<!-- <img src="./images/banner.png" /> -->
<h1>The current browser is unsupported.</h1>
<div>
Only <a href="https://www.google.com/chrome/browser/desktop">Chrome</a>,
<a href="http://www.mozilla.org/firefox/new/">Firefox</a>, Edge, and Safari are supported.
</div>
</div>
<script type="module" src="./app/setup.tsx"></script>
</body>
</html>