-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (59 loc) · 1.87 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
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>🗓 Meeting waste</title>
<link rel="stylesheet" href="reset.css" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<section class="content">
<h1>🗓 Meeting waste</h1>
<p>
We all feel it: there're way too many Zoom meetings. Fatigue is real. We
can be more async, but if we're not, what's the real cost?
</p>
<h3>🤷🏼♀️ Should I book that recurring meeting?</h3>
<div class="table">
<div class="items"></div>
<a
href="javascript:void(0);"
onclick="app.handleAddRowClicked(this)"
class="add-meeting"
>+ Add meeting</a
>
</div>
<div class="totals">
<h3>🧨 Total waste (in biz days)</h3>
<p>
🚫 Daily: <span class="daily-waste">00:00</span> <br />🚫 Weekly:
<span class="weekly-waste">00:00</span> <br />
🚫 Monthly: <span class="monthly-waste">00:00</span>
</p>
<p>
🤦🏼♀️ That's <span class="yearly-waste">0</span> hours of waste in a
year!
</p>
</div>
</section>
<footer>
<a href="https://github.com/linuxsable/meeting-waste">Created</a> with 🔥
by <a href="http://tylervh.com">Tyler Van Hoomissen</a>.
</footer>
<script src="app.js"></script>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-2QRCZ91QWM"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-2QRCZ91QWM");
</script>
</body>
</html>