-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (53 loc) · 2.97 KB
/
index.html
File metadata and controls
63 lines (53 loc) · 2.97 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/icon-512x512.png" />
<link rel="shortcut icon" type="image/png" href="/icon-512x512.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>mAccessMap - Making Every Space Accessible</title>
<meta name="description"
content="Empower your community by cataloging accessibility features of public spaces. Earn NFT badges as you help create a more inclusive world for everyone." />
<!-- PWA Meta Tags -->
<meta name="theme-color" content="#10b981" />
<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="mAccessMap" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="application-name" content="mAccessMap" />
<!-- Manifest -->
<link rel="manifest" href="/manifest.json" />
<!-- Apple Touch Icons -->
<link rel="apple-touch-icon" sizes="72x72" href="/icon-72x72.png" />
<link rel="apple-touch-icon" sizes="96x96" href="/icon-96x96.png" />
<link rel="apple-touch-icon" sizes="128x128" href="/icon-128x128.png" />
<link rel="apple-touch-icon" sizes="144x144" href="/icon-144x144.png" />
<link rel="apple-touch-icon" sizes="152x152" href="/icon-152x152.png" />
<link rel="apple-touch-icon" sizes="192x192" href="/icon-192x192.png" />
<link rel="apple-touch-icon" sizes="384x384" href="/icon-384x384.png" />
<link rel="apple-touch-icon" sizes="512x512" href="/icon-512x512.png" />
<!-- Microsoft Tiles -->
<meta name="msapplication-TileColor" content="#10b981" />
<meta name="msapplication-TileImage" content="/icon-144x144.png" />
<meta name="msapplication-config" content="/browserconfig.xml" />
<!-- Additional SEO and Social Meta Tags -->
<meta property="og:title" content="mAccessMap - Making Every Space Accessible" />
<meta property="og:description"
content="Empower your community by cataloging accessibility features of public spaces. Earn NFT badges as you help create a more inclusive world for everyone." />
<meta property="og:image" content="/screenshot-wide.png" />
<meta property="og:url" content="https://maccessmap.org" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="mAccessMap - Making Every Space Accessible" />
<meta name="twitter:description"
content="Empower your community by cataloging accessibility features of public spaces. Earn NFT badges as you help create a more inclusive world for everyone." />
<meta name="twitter:image" content="/screenshot-wide.png" />
<!-- Preload critical resources -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>