-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (27 loc) · 899 Bytes
/
Copy pathindex.html
File metadata and controls
29 lines (27 loc) · 899 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta
name="description"
content="A living visualization of the Raft consensus algorithm — elections, log replication, and time travel through a simulated key-value store cluster."
/>
<title>Raft — consensus, visualized</title>
</head>
<body>
<div id="stage">
<div id="scene"></div>
<div id="labels"></div>
</div>
<header id="topbar"></header>
<aside id="dials"></aside>
<aside id="side"></aside>
<section id="logmatrix"></section>
<footer id="timeline"></footer>
<div id="toasts"></div>
<div id="modal"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>