-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (33 loc) · 1.21 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
<!doctype html>
<!-- SPDX-License-Identifier: MIT -->
<!-- Copyright © 2024 André Santos -->
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0" />-->
<title>Stratis</title>
<meta name="mobile-web-app-capable" content="yes" />
<meta
name="viewport"
content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimal-ui"
/>
<meta name="apple-mobile-web-app-status-bar-style" content="yes" />
<link rel="manifest" href="/manifest.webmanifest" />
<!-- 32×32 -->
<link rel="icon" href="/favicon.ico" sizes="any" />
<link rel="icon" href="/icon.svg" type="image/svg+xml" />
<!-- 180×180 -->
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400&display=swap"
/>
</head>
<body>
<main id="app"></main>
<script type="module" src="/src/main.ts"></script>
</body>
</html>