-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathog-image.html
More file actions
169 lines (153 loc) · 4.44 KB
/
Copy pathog-image.html
File metadata and controls
169 lines (153 loc) · 4.44 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
width: 1200px; height: 630px;
background: #080b0f;
font-family: 'JetBrains Mono', monospace;
overflow: hidden;
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
/* Grid */
body::after {
content: '';
position: absolute;
inset: 0;
background-image:
linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
background-size: 60px 60px;
}
.card {
position: relative;
z-index: 1;
width: 100%;
height: 100%;
display: flex;
align-items: center;
padding: 70px 90px;
gap: 80px;
}
.left { flex: 1; }
.logo {
font-size: 1.1rem;
color: #00d4ff;
letter-spacing: -0.02em;
margin-bottom: 2rem;
font-weight: 700;
}
.logo span { color: #3d4a58; }
h1 {
font-family: 'Syne', sans-serif;
font-size: 3.4rem;
font-weight: 800;
line-height: 1.05;
letter-spacing: -0.03em;
color: #e2e8f0;
margin-bottom: 1.2rem;
}
h1 em {
font-style: normal;
background: linear-gradient(135deg, #00d4ff, #7c3aed);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.sub {
font-size: 0.95rem;
color: #64748b;
line-height: 1.7;
max-width: 420px;
}
.right {
width: 380px;
flex-shrink: 0;
}
.terminal {
background: #0d1117;
border: 1px solid #1e2730;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.bar {
background: #161b22;
padding: 0.7rem 1rem;
display: flex;
gap: 0.4rem;
align-items: center;
border-bottom: 1px solid #1e2730;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.r { background: #ff5f56; }
.y { background: #ffbd2e; }
.g { background: #27c93f; }
.body {
padding: 1.1rem 1.2rem;
font-size: 0.72rem;
line-height: 1.85;
}
.prompt { color: #00ff88; }
.cmd { color: #e2e8f0; }
.out { color: #64748b; }
.acc { color: #00d4ff; }
.lbl { color: #f59e0b; }
.ok { color: #00ff88; }
.badge {
display: inline-flex;
align-items: center;
gap: 0.4rem;
background: rgba(0,212,255,0.08);
border: 1px solid rgba(0,212,255,0.2);
color: #00d4ff;
font-size: 0.65rem;
padding: 0.3rem 0.8rem;
border-radius: 100px;
margin-bottom: 1.2rem;
}
.dot-live {
width: 5px; height: 5px;
background: #00ff88;
border-radius: 50%;
}
</style>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=Syne:wght@800&display=swap" rel="stylesheet">
</head>
<body>
<div class="card">
<div class="left">
<div class="logo">cxo<span>stack</span></div>
<div class="badge"><div class="dot-live"></div> Open Source · MIT</div>
<h1>Your AI C-Suite,<br><em>in your terminal.</em></h1>
<p class="sub">One command. Full CxO team + engineering squad. Powered by Claude Code subagents.</p>
</div>
<div class="right">
<div class="terminal">
<div class="bar">
<div class="dot r"></div>
<div class="dot y"></div>
<div class="dot g"></div>
</div>
<div class="body">
<div><span class="prompt">cxostack></span> <span class="cmd">/cto "invoicing SaaS"</span></div>
<div> </div>
<div><span class="lbl">[CTO]</span> <span class="out">Writing spec...</span> <span class="ok">✓</span></div>
<div><span class="lbl">[CTO]</span> <span class="out">Architecture → <span class="acc">arch.md</span></span></div>
<div><span class="lbl">[TEAM]</span> <span class="out">Building phase 1...</span></div>
<div><span class="lbl">[DEV-1]</span> <span class="out">Auth module</span> <span class="ok">✓</span></div>
<div><span class="lbl">[DEV-2]</span> <span class="out">Invoice engine</span> <span class="ok">✓</span></div>
<div><span class="lbl">[QA]</span> <span class="out">Tests passing</span> <span class="ok">✓</span></div>
<div><span class="lbl">[DEVOPS]</span> <span class="out">Deployed</span> <span class="ok">✓</span></div>
<div> </div>
<div><span class="prompt">cxostack></span> <span style="display:inline-block;width:7px;height:12px;background:#00d4ff;vertical-align:middle;"></span></div>
</div>
</div>
</div>
</div>
</body>
</html>