public
imalexnord
read
Slot
Calendar-first scheduling powered by Cloudflare Workers and Google Calendar.
Languages
Repository composition by tracked source files.
TypeScript
79%
CSS
19%
SQL
2%
HTML
0%
Create file
Wiki Documentation
Clone
https://nobgit.com/user/imalexnord/slot.git
ssh://[email protected]:2222/user/imalexnord/slot.git
Trace
index.html
Trace helps you understand code history line by line. See who changed each line, when it changed, and which commit introduced it.
Author
Date
Commit
Line
Code
1
<!doctype html>
2
<html lang="en">
3
<head>
4
<meta charset="UTF-8" />
5
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
<meta name="theme-color" content="#0b0c0f" />
7
<meta name="description" content="Book a slot." />
8
<title>Slot</title>
9
<script>
10
try {
11
document.documentElement.dataset.theme = localStorage.getItem('meet-theme') || 'true-black';
12
} catch {
13
document.documentElement.dataset.theme = 'true-black';
14
}
15
</script>
16
</head>
17
<body>
18
<div id="root"></div>
19
<script type="module" src="/src/main.tsx"></script>
20
</body>
21
</html>