-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (54 loc) · 2.71 KB
/
index.html
File metadata and controls
58 lines (54 loc) · 2.71 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="color-scheme" content="dark" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>CodeGrid — Terminal workspace manager for AI coding</title>
<meta name="description" content="Run multiple Claude Code sessions in a free-form 2D grid. Workspace management, broadcast mode, git manager, and more." />
<!-- Favicons -->
<link rel="icon" href="/favicon.ico" sizes="any" />
<link rel="icon" href="/public/favicon-32x32.png" type="image/png" sizes="32x32" />
<link rel="icon" href="/public/favicon-16x16.png" type="image/png" sizes="16x16" />
<link rel="apple-touch-icon" href="/public/apple-touch-icon.png" />
<!-- OpenGraph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="CodeGrid — Terminal workspace manager for AI coding" />
<meta property="og:description" content="Run multiple Claude Code sessions in a free-form 2D grid. Workspace management, broadcast mode, git manager, and more." />
<meta property="og:image" content="/public/og.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<!-- Twitter / X -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="CodeGrid — Terminal workspace manager for AI coding" />
<meta name="twitter:description" content="Run multiple Claude Code sessions in a free-form 2D grid." />
<meta name="twitter:image" content="/public/og.png" />
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap" rel="stylesheet" />
<style>
/* Prevent overscroll bounce on macOS */
html, body { overflow: hidden; overscroll-behavior: none; }
/* Prevent text selection on UI chrome */
body { -webkit-user-select: none; user-select: none; }
/* Allow selection inside terminals */
.terminal-container { -webkit-user-select: text; user-select: text; }
/*
Body user-select:none is inherited; without these overrides, native carets
often do not blink (or show) in inputs/textareas and xterm's helper textarea.
*/
input, textarea, select {
-webkit-user-select: text;
user-select: text;
caret-color: #ff8c00;
}
.xterm .xterm-helper-textarea {
-webkit-user-select: text !important;
user-select: text !important;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>