forked from ohcnetwork/care_fe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (53 loc) · 2.15 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no"
/>
<title>%REACT_APP_TITLE%</title>
<meta name="description" content="%REACT_APP_META_DESCRIPTION%" />
<meta property="og:title" content="%REACT_APP_TITLE%" />
<meta property="og:description" content="%REACT_APP_META_DESCRIPTION%" />
<meta property="og:image" content="%REACT_APP_COVER_IMAGE%" />
<meta property=" og:url" content="%REACT_PUBLIC_URL%" />
<meta property="og:site_name" content="%REACT_APP_TITLE%" />
<meta name="twitter:title" content="%REACT_APP_TITLE%" />
<meta name="twitter:description" content="%REACT_APP_META_DESCRIPTION%" />
<meta name="twitter:image" content="%REACT_APP_COVER_IMAGE%" />
<meta name="twitter:card" content="summary" />
<meta name="mobile-web-app-capable" content="yes" />
<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="Care" />
<meta name="theme-color" content="#33BB17" />
<link rel="shortcut icon" href="/favicon-dark.ico" type="image/x-icon" />
<link
rel="apple-touch-icon"
href="https://cdn.coronasafe.network/care-manifest/images/icons/icon-192x192.png"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
<script
src="https://kit.fontawesome.com/d69454c2e7.js"
crossorigin="anonymous"
></script>
<script>
window.plausible =
window.plausible ||
function () {
(window.plausible.q = window.plausible.q || []).push(arguments);
};
</script>
</body>
</html>