-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 1.23 KB
/
Copy pathindex.html
File metadata and controls
31 lines (31 loc) · 1.23 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>cot.</title>
<meta name="description" content="Connect your agent to cot. Trace Claude and Cursor sessions with hooks — self-hosted." />
<link rel="icon" type="image/svg+xml" href="/favicon-vermilion.svg" />
<link rel="apple-touch-icon" href="/apple-touch-icon.svg" />
<meta name="theme-color" content="#0b0e11" />
<script defer src="/stats/script.js" data-website-id="f2dbacec-6230-416b-9682-53eedf073984" data-host-url="/stats"></script>
<script>
// Apply the theme before paint to avoid a flash: a saved light/dark
// choice wins, otherwise follow the OS setting.
(function () {
var t;
try {
t = localStorage.getItem('cot.theme');
} catch (e) {}
if (t !== 'light' && t !== 'dark') {
t = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
}
document.documentElement.setAttribute('data-theme', t);
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>