-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (50 loc) · 2.8 KB
/
index.html
File metadata and controls
57 lines (50 loc) · 2.8 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
<!doctype html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Y4J18CGP7D"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-Y4J18CGP7D');
</script>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/attendify-favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=no" />
<title>Attendify for Clubs & Organizations</title>
<meta name="description" content="Attendify is a modern attendance tracking platform for school clubs and organizations." />
<link rel="canonical" href="https://attendify.app/" />
<meta property="og:title" content="Attendify: Modern Attendance Tracking" />
<meta property="og:description" content="Streamline attendance for your school clubs and organizations with Attendify." />
<meta property="og:image" content="/attendify-social-preview.png" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://attendify.app/" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Attendify: Modern Attendance Tracking" />
<meta name="twitter:description" content="Streamline attendance for your school clubs and organizations with Attendify." />
<!-- PWA Manifest -->
<link rel="manifest" href="/manifest.json" />
<!-- iOS Specific Meta Tags for Home Screen App -->
<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="Attendify" />
<meta name="mobile-web-app-capable" content="yes" />
<!-- iOS Icons -->
<link rel="apple-touch-icon" href="/icons/icon-152x152.png" />
<link rel="apple-touch-icon" sizes="72x72" href="/icons/icon-72x72.png" />
<link rel="apple-touch-icon" sizes="96x96" href="/icons/icon-96x96.png" />
<link rel="apple-touch-icon" sizes="128x128" href="/icons/icon-128x128.png" />
<link rel="apple-touch-icon" sizes="144x144" href="/icons/icon-144x144.png" />
<link rel="apple-touch-icon" sizes="152x152" href="/icons/icon-152x152.png" />
<link rel="apple-touch-icon" sizes="192x192" href="/icons/icon-192x192.png" />
<link rel="apple-touch-icon" sizes="384x384" href="/icons/icon-384x384.png" />
<link rel="apple-touch-icon" sizes="512x512" href="/icons/icon-512x512.png" />
<!-- Theme color for browser UI -->
<meta name="theme-color" content="#000000" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>