-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (43 loc) · 1.72 KB
/
index.html
File metadata and controls
48 lines (43 loc) · 1.72 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
47
48
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=no"
/>
<link rel="icon" href="/favicon.ico" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Events & Opportunities platform" />
<!-- PWA Meta Tags -->
<meta name="mobile-web-app-capable" content="yes" />
<meta name="application-name" content="EvOps" />
<!-- Apple iOS Meta Tags -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<meta name="apple-mobile-web-app-title" content="EvOps" />
<link rel="apple-touch-icon" href="/logo.png" />
<link rel="apple-touch-icon" sizes="152x152" href="/logo.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/logo.png" />
<link rel="apple-touch-icon" sizes="167x167" href="/logo.png" />
<!-- Microsoft Windows Meta Tags -->
<meta name="msapplication-TileColor" content="#000000" />
<meta name="msapplication-TileImage" content="/logo.png" />
<meta name="msapplication-config" content="/browserconfig.xml" />
<!-- Additional PWA Meta Tags -->
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<meta name="full-screen" content="yes" />
<meta name="browsermode" content="application" />
<link rel="mask-icon" href="/logo.png" color="#000000" />
<link rel="manifest" href="/manifest.json" />
<title>EvOps</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>