forked from linky-fit/linky
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (40 loc) · 1.07 KB
/
Copy pathindex.html
File metadata and controls
40 lines (40 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/icon.svg" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<meta name="theme-color" content="#14b8a6" />
<title>Linky</title>
</head>
<body>
<div id="root">
<div
style="
min-height: 100vh;
display: grid;
place-items: center;
background: #071415;
color: #d1fae5;
font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
Arial, sans-serif;
"
>
<div style="display: grid; place-items: center; gap: 16px">
<img
src="/icon-animated.svg"
alt="Linky"
width="220"
height="220"
style="display: block"
/>
<div style="font-size: 14px; opacity: 0.85">Loading…</div>
</div>
</div>
</div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>