-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (85 loc) · 3.36 KB
/
Copy pathindex.html
File metadata and controls
93 lines (85 loc) · 3.36 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>Standup Shuffler - Random Team Speaker Selection Tool</title>
<meta
name="title"
content="Standup Shuffler - Random Team Speaker Selection Tool"
/>
<meta
name="description"
content="A beautiful, modern tool to help manage standup meetings with random participant selection. Add team members and let the shuffler decide who speaks next!"
/>
<meta name="author" content="Salvatore Laisa" />
<meta
name="keywords"
content="standup, scrum, agile, meeting, team, random, shuffle, speaker, selection, productivity"
/>
<meta name="robots" content="index, follow" />
<meta name="language" content="English" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta
property="og:url"
content="https://salvatorelaisa.github.io/standup-shuffler/"
/>
<meta
property="og:title"
content="Standup Shuffler - Random Team Speaker Selection Tool"
/>
<meta
property="og:description"
content="A beautiful, modern tool to help manage standup meetings with random participant selection. Add team members and let the shuffler decide who speaks next!"
/>
<meta
property="og:image"
content="https://salvatorelaisa.github.io/standup-shuffler/og-image.png"
/>
<meta property="og:site_name" content="Standup Shuffler" />
<meta property="og:locale" content="en_US" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta
property="twitter:url"
content="https://salvatorelaisa.github.io/standup-shuffler/"
/>
<meta
property="twitter:title"
content="Standup Shuffler - Random Team Speaker Selection Tool"
/>
<meta
property="twitter:description"
content="A beautiful, modern tool to help manage standup meetings with random participant selection. Add team members and let the shuffler decide who speaks next!"
/>
<meta
property="twitter:image"
content="https://salvatorelaisa.github.io/standup-shuffler/og-image.png"
/>
<meta property="twitter:creator" content="@salvatore_laisa" />
<!-- PWA Manifest -->
<link rel="manifest" href="/manifest.json" />
<!-- Favicons -->
<link rel="icon" type="image/svg+xml" href="/src/favicon.svg" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/src/favicon.svg" />
<!-- Theme Colors -->
<meta name="theme-color" content="#2563eb" />
<meta name="msapplication-TileColor" content="#2563eb" />
<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="Shuffler" />
<!-- Preconnect for performance -->
<link rel="preconnect" href="https://api.dicebear.com" />
<!-- Security -->
<meta http-equiv="X-Content-Type-Options" content="nosniff" />
<meta http-equiv="X-Frame-Options" content="DENY" />
<meta http-equiv="X-XSS-Protection" content="1; mode=block" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>