-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
345 lines (308 loc) · 9.07 KB
/
index.html
File metadata and controls
345 lines (308 loc) · 9.07 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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>gion — Git workspaces as code, with guardrails</title>
<meta
name="description"
content="gion is a Git workspace tool built on worktrees. Declare an inventory in YAML, then plan/apply to reconcile safely."
/>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-GGSMHHLEKE"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-GGSMHHLEKE");
</script>
<style>
:root {
--bg: #070b14;
--ink: #eef2ff;
--muted: #a2b1d0;
--accent: #4fd1ff;
--accent-2: #ffae4f;
--card: #0d1220;
--line: rgba(255, 255, 255, 0.08);
--shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
* {
box-sizing: border-box;
}
body {
margin: 0;
color: var(--ink);
font-family: "Outfit", "Helvetica", sans-serif;
background:
radial-gradient(900px 520px at 20% -10%, rgba(79, 209, 255, 0.22), transparent 60%),
radial-gradient(900px 520px at 90% 0%, rgba(255, 174, 79, 0.2), transparent 60%),
linear-gradient(180deg, #070b14 0%, #070915 100%);
}
.page {
max-width: 1100px;
margin: 0 auto;
padding: 56px 20px 96px;
}
header {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 32px;
align-items: center;
}
.kicker {
font-family: "Outfit", "Helvetica", sans-serif;
letter-spacing: 0.3em;
text-transform: uppercase;
font-size: 12px;
color: var(--muted);
}
h1 {
font-family: "Bebas Neue", "Outfit", sans-serif;
font-size: clamp(40px, 7vw, 72px);
margin: 10px 0 12px;
letter-spacing: 0.02em;
line-height: 1;
}
.tagline {
font-size: 18px;
line-height: 1.6;
color: var(--muted);
max-width: 520px;
}
.cta-row {
margin-top: 22px;
display: flex;
flex-wrap: wrap;
gap: 12px;
}
.btn {
display: inline-flex;
align-items: center;
padding: 12px 18px;
border-radius: 14px;
font-size: 14px;
text-decoration: none;
border: 1px solid var(--line);
color: var(--ink);
background: rgba(13, 18, 32, 0.9);
transition: transform 200ms ease, box-shadow 200ms ease, border 200ms ease;
}
.btn.primary {
background: linear-gradient(135deg, var(--accent), #7b6bff);
border-color: transparent;
color: #04101a;
font-weight: 600;
}
.btn:hover {
transform: translateY(-2px);
box-shadow: var(--shadow);
border-color: rgba(255, 255, 255, 0.2);
}
.demo {
background: var(--card);
border-radius: 22px;
padding: 22px;
border: 1px solid var(--line);
box-shadow: var(--shadow);
}
.demo video {
width: 100%;
height: auto;
display: block;
border-radius: 14px;
background: #000;
}
section {
margin-top: 64px;
}
h2 {
font-size: 28px;
margin: 0 0 16px;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 20px;
}
.card {
background: var(--card);
padding: 20px;
border-radius: 16px;
border: 1px solid var(--line);
box-shadow: var(--shadow);
}
.card h3 {
margin: 0 0 8px;
font-size: 18px;
}
.card p {
margin: 0;
color: var(--muted);
line-height: 1.5;
overflow-wrap: anywhere;
word-break: break-word;
}
.steps {
display: grid;
gap: 12px;
color: var(--muted);
}
code {
font-family: "Chivo Mono", "Menlo", monospace;
background: rgba(79, 209, 255, 0.14);
padding: 2px 6px;
border-radius: 6px;
color: var(--accent);
}
footer {
margin-top: 64px;
color: var(--muted);
text-align: center;
}
@media (prefers-reduced-motion: no-preference) {
header,
.card,
.demo {
animation: glow-in 700ms ease forwards;
opacity: 0;
transform: translateY(12px);
}
header {
animation-delay: 120ms;
}
.demo {
animation-delay: 220ms;
}
.card:nth-child(1) {
animation-delay: 220ms;
}
.card:nth-child(2) {
animation-delay: 280ms;
}
.card:nth-child(3) {
animation-delay: 340ms;
}
.card:nth-child(4) {
animation-delay: 400ms;
}
}
@keyframes glow-in {
to {
opacity: 1;
transform: translateY(0);
}
}
</style>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@400;500;600&family=Chivo+Mono:wght@400;500&display=swap"
/>
</head>
<body>
<div class="page">
<header>
<div>
<div class="kicker">gion</div>
<h1>Git workspaces, as code.</h1>
<p class="tagline">
Define workspaces in YAML, then plan/apply to reconcile safely. Reproducible by default, safe
for bulk operations.
</p>
<div class="cta-row">
<a class="btn primary" href="https://github.com/tasuku43/gion#quickstart-5-minutes"
>Quickstart (README)</a
>
<a class="btn" href="https://github.com/tasuku43/gion">View on GitHub</a>
</div>
</div>
<div class="demo">
<video controls playsinline preload="metadata" aria-label="gion demo video">
<source src="demo.mp4" type="video/mp4" />
Your browser does not support the video tag.
</video>
</div>
</header>
<section>
<h2>Why gion</h2>
<div class="grid">
<div class="card">
<h3>Reproducible inventory</h3>
<p>Workspace inventory lives in <code>gion.yaml</code>, reconciled via plan/apply.</p>
</div>
<div class="card">
<h3>Bulk create & cleanup</h3>
<p>Create and remove many workspaces with diffs and confirmations for deletions.</p>
</div>
<div class="card">
<h3>Multi-repo tasks</h3>
<p>Presets bundle multiple repos into a single task workspace.</p>
</div>
<div class="card">
<h3>Many entry points</h3>
<p>Start from repos, presets, or PRs/issues and reconcile in one apply.</p>
</div>
</div>
</section>
<section>
<h2>Quickstart (via README)</h2>
<div class="card">
<p>
The README is the source of truth for install and the command flow. Start there, then come
back for the overview.
</p>
<div class="cta-row" style="margin-top: 12px">
<a class="btn primary" href="https://github.com/tasuku43/gion#quickstart-5-minutes"
>Open Quickstart</a
>
<a class="btn" href="https://github.com/tasuku43/gion">Read the README</a>
</div>
</div>
</section>
<section>
<h2>Install</h2>
<div class="grid">
<div class="card">
<h3>Homebrew</h3>
<p><code>brew tap tasuku43/gion</code></p>
<p><code>brew install gion</code></p>
</div>
<div class="card">
<h3>mise</h3>
<p><code>mise use -g github:tasuku43/gion@<version></code></p>
</div>
<div class="card">
<h3>Direct download</h3>
<p>Download the prebuilt binaries and put <code>gion</code> on your PATH.</p>
</div>
</div>
</section>
<section>
<h2>Workflow</h2>
<div class="steps">
<div>1) Declare in <code>gion.yaml</code></div>
<div>2) <code>gion plan</code> (diff only)</div>
<div>3) <code>gion apply</code> (confirm destructive changes)</div>
</div>
</section>
<section>
<h2>FAQ</h2>
<div class="grid">
<div class="card">
<h3>Do I need gh?</h3>
<p>Only for <code>--issue</code> and <code>--review</code> modes (GitHub).</p>
</div>
<div class="card">
<h3>Is deletion safe?</h3>
<p><code>plan</code> surfaces risky deletions before <code>apply</code>.</p>
</div>
</div>
</section>
<footer>
Explore the full docs on <a href="https://github.com/tasuku43/gion">GitHub</a>.
</footer>
</div>
</body>
</html>