-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (69 loc) · 3.49 KB
/
Copy pathindex.html
File metadata and controls
69 lines (69 loc) · 3.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Quorum — Free Planning Poker for Agile Teams | P2P, No Accounts</title>
<meta name="description" content="Browser-native planning poker for agile teams. No accounts, no server — share a room URL and estimate together. P2P voting over WebRTC, Fibonacci deck, auto-reveal, story lists. Free and open source." />
<meta name="keywords" content="planning poker, agile estimation, story points, fibonacci, scrum, estimation tool, free planning poker, p2p, peer to peer, no login, open source" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="preload" href="/fonts/DejaVuSansMono.ttf" as="font" type="font/ttf" crossorigin />
<link rel="canonical" href="https://quorum.univerlab.org/" />
<!-- Fonts: Space Grotesk (display) + IBM Plex Mono (labels/codes) -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Space+Grotesk:wght@400;500;600;700&display=swap" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Quorum — UniverLab" />
<meta property="og:title" content="Quorum — Free Planning Poker for Agile Teams" />
<meta property="og:description" content="Browser-native planning poker. No accounts, no server — share a room URL and estimate together. P2P voting over WebRTC." />
<meta property="og:url" content="https://quorum.univerlab.org/" />
<meta property="og:image" content="https://quorum.univerlab.org/og.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="Quorum — Free Planning Poker for Agile Teams" />
<meta property="og:locale" content="en_US" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Quorum — Free Planning Poker for Agile Teams" />
<meta name="twitter:description" content="Browser-native planning poker. No accounts, no server — share a room URL and estimate together." />
<meta name="twitter:image" content="https://quorum.univerlab.org/og.png" />
<meta name="twitter:image:alt" content="Quorum — Free Planning Poker" />
<!-- Structured Data: WebApplication -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Quorum",
"url": "https://quorum.univerlab.org",
"description": "Browser-native planning poker for agile teams. No accounts, no server — share a room URL and estimate together. P2P voting over WebRTC.",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Web Browser",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"author": {
"@type": "Organization",
"name": "UniverLab",
"url": "https://univerlab.org"
},
"featureList": [
"Planning poker with Fibonacci deck",
"Peer-to-peer WebRTC voting",
"No accounts or server required",
"Auto-reveal when all voted",
"Story list management",
"CSV import/export",
"Circadian theme switching"
]
}
</script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>