-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (34 loc) · 1.56 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="./favicon.svg" type="image/svg+xml" />
<link rel="alternate icon" href="./favicon.ico" type="image/png" sizes="16x16" />
<link rel="apple-touch-icon" href="./apple-touch-icon.png" sizes="180x180" />
<link rel="mask-icon" href="./favicon.svg" color="#FFFFFF" />
<meta name="theme-color" content="#000000" />
<!-- By default, a screenshot of the web application the last time it was launched is used.
To avoid that, specify a launch screen image that is displayed while the app launches
-->
<link rel="apple-touch-startup-image" href="./apple-launch-screen/apple-launch-1242x2688.png" />
<!-- Displays web content using standalone mode, hiding safari UI -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<!-- Launch icon title, by default the <title> tag is used -->
<meta name="apple-mobile-web-app-title" content="Binnacle" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&family=Work+Sans:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<title>Binnacle</title>
</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>
<script>
window.global = window
</script>
</body>
</html>