-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (46 loc) · 2.03 KB
/
index.html
File metadata and controls
46 lines (46 loc) · 2.03 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
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
<link rel="apple-touch-icon" href="/logo.svg" />
<link rel="preconnect" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#333399" />
<meta name="description" content="We make it easier for patients to recover from surgery at home." />
<meta property="og:title" content="Postcare app" />
<meta property="og:type" content="webapp" />
<meta property="og:image" content="./app_screenshot.png" />
<meta property="og:description" content="We make it easier for patients to recover from surgery at home." />
<meta name="author" content="co-authored by ismail courr, david chibueze" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="" />
<meta name="twitter:creator" content="@ismailco" />
<meta name="twitter:title" content="Postcare app" />
<meta name="twitter:description" content="We make it easier for patients to recover from surgery at home." />
<meta name="twitter:image" content="./app_screenshot.png" />
<!-- need editing -->
<meta property="og:url" content="https://ismailcourr.ml" />
<meta name="keywords" content="" />
<!-- end -->
<link rel="preload" href="https://pro.fontawesome.com/releases/v6.0.0-beta3/css/all.css" as="style" onload="this.onload=null;this.rel='stylesheet'" />
<link rel="manifest" href="./manifest.json" />
<title>Postcare app</title>
</head>
<body>
<div id="root"></div>
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker
.register('./serviceWorker.js')
.then((registration) => {})
.catch((registrationError) => {
throw new Error(registrationError);
});
});
}
</script>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>