-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 1.49 KB
/
Copy pathindex.html
File metadata and controls
31 lines (31 loc) · 1.49 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="apple-touch-icon" href="/app_icon.png" />
<link rel="manifest" href="/manifest.webmanifest" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta name="description" content="Track your training, your body composition and what to work next." />
<!-- iOS implements none of the install API. These three are what make
Add to Home Screen open without Safari's chrome around it. -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="MorphIQ" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<!-- Overwritten by the shell once the resolved colour mode is known; this
value is what the browser chrome uses before React mounts. -->
<meta name="theme-color" content="#f3ece2" />
<title>MorphIQ</title>
<style>
/* Painted before any stylesheet loads, so a cold start never flashes
white before the sand background arrives. `applySurface` overrides it
with the dark value when that is the resolved mode. */
html { background-color: #f3ece2; }
@media (prefers-color-scheme: dark) { html { background-color: #1a1512; } }
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>