Skip to content

Commit 623016c

Browse files
committed
more readable
1 parent b959304 commit 623016c

File tree

8 files changed

+419
-120
lines changed

8 files changed

+419
-120
lines changed

src/_layouts/base.njk

Lines changed: 46 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
<title>{{ title }} - codeGROOVE</title>
77
<meta name="description" content="{{ description }}">
88
<link rel="icon" type="image/png" href="/media/logo.png">
9+
<link rel="preconnect" href="https://fonts.googleapis.com">
10+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
11+
<link href="https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
912
<style>
1013
* {
1114
margin: 0;
@@ -22,7 +25,7 @@
2225
}
2326
2427
body {
25-
font-family: "Courier New", Courier, monospace;
28+
font-family: "Space Mono", "Courier New", Courier, monospace;
2629
font-size: 16px;
2730
line-height: 1.8;
2831
color: var(--black);
@@ -44,10 +47,10 @@
4447
}
4548
4649
.site-title {
47-
font-size: 32px;
48-
font-weight: bold;
49-
letter-spacing: -2px;
50-
text-transform: uppercase;
50+
font-family: "Passion One", sans-serif;
51+
font-size: 36px;
52+
font-weight: 700;
53+
letter-spacing: 0.5px;
5154
margin-bottom: 15px;
5255
transform: skewX(-5deg);
5356
}
@@ -60,10 +63,12 @@
6063
}
6164
6265
nav a {
66+
font-family: "Space Mono", monospace;
6367
color: var(--black);
6468
text-decoration: none;
6569
font-size: 14px;
66-
letter-spacing: 1px;
70+
font-weight: 400;
71+
letter-spacing: 0.5px;
6772
padding: 2px 0;
6873
border-bottom: 2px solid transparent;
6974
}
@@ -82,29 +87,32 @@
8287
}
8388
8489
h1 {
85-
font-size: 48px;
86-
font-weight: bold;
90+
font-family: "Passion One", sans-serif;
91+
font-size: 56px;
92+
font-weight: 400;
8793
line-height: 0.9;
8894
margin-bottom: 40px;
89-
letter-spacing: -3px;
95+
letter-spacing: 0px;
9096
text-transform: uppercase;
9197
}
9298
9399
h2 {
94-
font-size: 18px;
95-
font-weight: normal;
100+
font-family: "Passion One", sans-serif;
101+
font-size: 24px;
102+
font-weight: 400;
96103
margin: 60px 0 20px 0;
97104
text-transform: uppercase;
98-
letter-spacing: 3px;
105+
letter-spacing: 1.5px;
99106
border-top: 1px solid var(--grey);
100107
padding-top: 20px;
101108
}
102109
103110
h3 {
111+
font-family: "Space Mono", monospace;
104112
font-size: 16px;
105-
font-weight: bold;
113+
font-weight: 700;
106114
margin: 30px 0 15px 0;
107-
letter-spacing: 1px;
115+
letter-spacing: 0.5px;
108116
}
109117
110118
p {
@@ -175,6 +183,7 @@
175183
176184
.hero h1,
177185
.hero h2 {
186+
font-family: "Passion One", sans-serif;
178187
color: var(--yellow);
179188
border: none;
180189
margin-top: 0;
@@ -200,12 +209,15 @@
200209
.product {
201210
border: 2px solid var(--black);
202211
padding: 30px;
203-
transition: transform 0.2s ease;
212+
background: var(--yellow);
204213
}
205214
206-
.product:hover {
207-
background: var(--yellow);
208-
transform: translateY(-4px);
215+
.product h3 {
216+
font-family: "Passion One", sans-serif;
217+
font-size: 28px;
218+
font-weight: 400;
219+
margin: 0 0 15px 0;
220+
letter-spacing: 0px;
209221
}
210222
211223
.groove-card {
@@ -248,15 +260,16 @@
248260
}
249261
250262
.cta {
263+
font-family: "Passion One", sans-serif;
251264
display: inline-block;
252265
background: var(--black);
253266
color: var(--yellow);
254267
padding: 20px 40px;
255268
text-decoration: none;
256269
text-transform: uppercase;
257-
letter-spacing: 3px;
258-
font-size: 16px;
259-
font-weight: bold;
270+
letter-spacing: 2px;
271+
font-size: 20px;
272+
font-weight: 400;
260273
margin: 30px 0;
261274
border: 4px solid var(--black);
262275
transition: all 0.2s ease;
@@ -270,14 +283,15 @@
270283
}
271284
272285
blockquote {
286+
font-family: "Space Mono", monospace;
273287
border-left: 8px solid var(--yellow);
274288
padding-left: 30px;
275289
margin: 40px 0;
276-
font-style: normal;
290+
font-style: italic;
277291
color: var(--black);
278-
font-size: 20px;
279-
font-weight: bold;
280-
letter-spacing: -1px;
292+
font-size: 18px;
293+
font-weight: 400;
294+
letter-spacing: 0px;
281295
position: relative;
282296
}
283297
@@ -304,11 +318,12 @@
304318
}
305319
306320
th {
321+
font-family: "Space Mono", monospace;
307322
background: var(--black);
308323
color: var(--white);
309-
font-weight: normal;
324+
font-weight: 700;
310325
text-transform: uppercase;
311-
letter-spacing: 1px;
326+
letter-spacing: 0.5px;
312327
font-size: 14px;
313328
}
314329
@@ -328,6 +343,7 @@
328343
}
329344
330345
footer {
346+
font-family: "Space Mono", monospace;
331347
background: var(--black);
332348
color: var(--white);
333349
padding: 60px 20px;
@@ -469,8 +485,8 @@
469485
<nav role="navigation" aria-label="Main">
470486
<ul>
471487
<li><a href="/" {% if page.url == '/' %}aria-current="page"{% endif %}>Home</a></li>
472-
<li><a href="/products/" {% if page.url == '/products/' %}aria-current="page"{% endif %}>Products</a></li>
473-
<li><a href="/open-source/" {% if page.url == '/open-source/' %}aria-current="page"{% endif %}>Open Source</a></li>
488+
<li><a href="/products/" {% if page.url.startsWith('/products/') %}aria-current="page"{% endif %}>Products</a></li>
489+
<li><a href="/oss/" {% if page.url == '/oss/' %}aria-current="page"{% endif %}>Open Source</a></li>
474490
<li><a href="/security/" {% if page.url == '/security/' %}aria-current="page"{% endif %}>Security</a></li>
475491
<li><a href="/about/" {% if page.url == '/about/' %}aria-current="page"{% endif %}>About</a></li>
476492
<li><a href="/blog/" {% if page.url.startsWith('/blog/') %}aria-current="page"{% endif %}>Blog</a></li>
@@ -487,7 +503,7 @@
487503
<footer>
488504
<div class="footer-links">
489505
<a href="/products/">Products</a>
490-
<a href="/open-source/">Open Source</a>
506+
<a href="/oss/">Open Source</a>
491507
<a href="/security/">Security</a>
492508
<a href="/about/">About</a>
493509
<a href="/blog/">Blog</a>

src/groovehub.njk

Lines changed: 0 additions & 52 deletions
This file was deleted.

src/index.njk

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ description: Transform your 4-day PR cycle into 3 hours. Measurable results in w
55
---
66

77
<section class="hero">
8-
<h1 style="font-size: 56px; line-height: 0.85;">SHIP<br>95%<br>FASTER</h1>
9-
<p style="font-size: 20px; margin-top: 30px;">5-day PR cycle → 3 hours<br>
10-
<span style="color: var(--yellow);">GET ON THE GOOD FOOT</span></p>
8+
<h1 style="font-size: 56px; line-height: 0.85;">SHIP<br>94%<br>FASTER</h1>
9+
<p style="font-size: 20px; margin-top: 30px;">4.5-day pull request cycle → 3 hours<br>
10+
<span style="color: var(--yellow);">OUTSHIP YOUR COMPETITION</span></p>
1111
</section>
1212

1313
<h2 style="font-size: 24px; letter-spacing: -1px;">THE PROBLEM</h2>
1414

1515
<div class="groove-card">
16-
<p style="font-size: 24px; font-weight: bold; margin: 0;">30% OF YOUR TIME</p>
16+
<p style="font-size: 24px; font-weight: bold; margin: 0;">25% OF YOUR TIME</p>
1717
<p style="font-size: 18px;">WAITING FOR REVIEWS</p>
18-
<p style="font-size: 32px; font-weight: bold; color: var(--grey); margin-top: 20px;">$1.2M/YEAR</p>
18+
<p style="font-size: 32px; font-weight: bold; color: var(--grey); margin-top: 20px;">$1M/YEAR</p>
1919
<p style="margin: 0;">BURNED ON A 20-PERSON TEAM</p>
2020
</div>
2121

@@ -31,19 +31,14 @@ description: Transform your 4-day PR cycle into 3 hours. Measurable results in w
3131
</thead>
3232
<tbody>
3333
<tr>
34-
<td>Average PR Open Time</td>
35-
<td>5 days</td>
34+
<td>GitHub Pull Request Open Time</td>
35+
<td>4.5 days</td>
3636
<td>3 hours</td>
3737
</tr>
3838
<tr>
3939
<td>Average Review Latency</td>
4040
<td>4 days</td>
41-
<td>45 minutes</td>
42-
</tr>
43-
<tr>
44-
<td>Time in Review Queue</td>
45-
<td>65% of PR cycle</td>
46-
<td>15% of PR cycle</td>
41+
<td>2 hours</td>
4742
</tr>
4843
<tr>
4944
<td>Developer Satisfaction</td>
@@ -53,31 +48,35 @@ description: Transform your 4-day PR cycle into 3 hours. Measurable results in w
5348
</tbody>
5449
</table>
5550

56-
<h2 style="font-size: 24px; letter-spacing: -1px;">TWO WAYS TO GROOVE</h2>
51+
<h2 style="font-size: 24px; letter-spacing: -1px;">FOR ENGINEERS, BY ENGINEERS</h2>
52+
53+
<p style="font-weight: bold; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 30px;">Two ways to groove:</p>
5754

5855
<div class="products">
5956
<article class="product">
6057
<h3>Ready to Review</h3>
6158
<p><strong>For individual developers</strong></p>
62-
<p>Personal PR dashboard that ensures you never miss a review.</p>
59+
<p>Personal dashboard for GitHub pull requests. Never miss a review.</p>
6360
<ul>
6461
<li>80% fewer notifications</li>
6562
<li>100% actionable alerts</li>
6663
<li>Zero configuration</li>
6764
</ul>
6865
<p class="text-muted">Free for open source</p>
66+
<p><a href="https://dash.ready-to-review.dev">Try it now →</a></p>
6967
</article>
7068

7169
<article class="product">
7270
<h3>grooveHUB</h3>
7371
<p><strong>For teams of 2-100</strong></p>
74-
<p>Organization-wide automation with Robot Army.</p>
72+
<p>Reduces your GitHub pull request latency by 94%.</p>
7573
<ul>
7674
<li>SOC 2 compliance automation</li>
7775
<li>Robot Army (GitHub bots)</li>
7876
<li>Self-hosted with custom support</li>
7977
</ul>
8078
<p class="text-muted">Coming Q4 2025</p>
79+
<p><a href="https://dash.ready-to-review.dev">Try it now →</a></p>
8180
</article>
8281
</div>
8382

src/open-source.njk renamed to src/oss.njk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ description: Free for open source projects. Forever.
1212

1313
<h2 style="font-size: 24px; letter-spacing: -1px;">OUR JAMS</h2>
1414
<ul>
15-
<li><a href="https://github.com/codeGROOVE-dev/goose">Goose</a> - Autonomous developer agent</li>
16-
<li>Ready to Review - GitHub Action (coming soon)</li>
15+
<li><a href="/oss/goose/">Goose</a> - PR tracker that honks when you're the bottleneck</li>
16+
<li><a href="https://github.com/codeGROOVE-dev/ready-to-review">Ready to Review</a> - Turn-based PR notifications</li>
1717
<li>More at <a href="https://github.com/codeGROOVE-dev">github.com/codeGROOVE-dev</a></li>
1818
</ul>
1919

0 commit comments

Comments
 (0)