-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (33 loc) · 2.03 KB
/
Copy pathindex.html
File metadata and controls
37 lines (33 loc) · 2.03 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🔔</text></svg>" />
<title>Agenda Timer - Keep Meetings on Track</title>
<meta name="description" content="A simple, real-time meeting timer that keeps your agenda on track. Create timed agenda items, share a room code, and run better meetings." />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Agenda Timer - Keep Meetings on Track" />
<meta property="og:description" content="A simple, real-time meeting timer that keeps your agenda on track. Create timed agenda items, share a room code, and run better meetings." />
<meta property="og:image" content="https://agenda-keeper.netlify.app/og.png" />
<meta property="og:image:width" content="1920" />
<meta property="og:image:height" content="1080" />
<meta property="og:url" content="https://agenda-keeper.netlify.app" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Agenda Timer - Keep Meetings on Track" />
<meta name="twitter:description" content="A simple, real-time meeting timer that keeps your agenda on track. Create timed agenda items, share a room code, and run better meetings." />
<meta name="twitter:image" content="https://agenda-keeper.netlify.app/og.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>