-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (56 loc) · 1.91 KB
/
Copy pathindex.html
File metadata and controls
56 lines (56 loc) · 1.91 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="ClawQueue is local GitHub issue dispatch for operator-controlled AI agents." />
<link rel="canonical" href="https://clawqueue.github.io/ClawQueue/" />
<meta http-equiv="refresh" content="0; url=/ClawQueue/" />
<title>ClawQueue</title>
<style>
:root { color-scheme: light dark; }
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
color: #0c1830;
background: #f6f8fb;
}
main {
width: min(640px, calc(100% - 32px));
padding: 32px;
border: 1px solid #d8e2ef;
border-radius: 24px;
background: #fff;
box-shadow: 0 18px 60px rgba(9, 26, 51, .10);
}
h1 { margin: 0 0 8px; font-size: clamp(1.8rem, 5vw, 2.6rem); line-height: 1.05; }
p { margin: 0 0 20px; color: #5f6c80; line-height: 1.6; }
a {
display: inline-flex;
min-height: 44px;
align-items: center;
padding: 0 18px;
border-radius: 999px;
color: #fff;
background: linear-gradient(135deg, #ff4a12, #e11b0c);
font-weight: 700;
text-decoration: none;
}
@media (prefers-color-scheme: dark) {
body { color: #f4f7fb; background: #091a33; }
main { background: #0f2342; border-color: rgba(255,255,255,.14); }
p { color: rgba(234,247,255,.78); }
}
</style>
</head>
<body>
<main>
<h1>ClawQueue moved to the docs homepage.</h1>
<p>The public homepage now uses the canonical VitePress docs source at <code>docs/index.md</code>.</p>
<a href="/ClawQueue/">Open ClawQueue homepage</a>
</main>
</body>
</html>