-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (33 loc) · 1.28 KB
/
Copy pathindex.html
File metadata and controls
37 lines (33 loc) · 1.28 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, viewport-fit=cover"
/>
<!-- Primary meta -->
<title>Kelane</title>
<meta
name="description"
content="Your personal recipe manager and meal planner"
/>
<meta name="theme-color" content="#150404" />
<!-- Favicon -->
<link rel="icon" type="image/png" sizes="32x32" href="/icon-32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/icon-16.png" />
<link rel="icon" type="image/svg+xml" href="/icon.svg" />
<!-- Apple PWA -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="Kelane" />
<link rel="apple-touch-icon" href="/icon-180.png" />
<!-- Microsoft tiles -->
<meta name="msapplication-TileImage" content="/icon-192.png" />
<meta name="msapplication-TileColor" content="#150404" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>