Skip to content

Commit 7e96734

Browse files
Thomas StrombergThomas Stromberg
authored andcommitted
opensource instead of oss
1 parent ea3136f commit 7e96734

File tree

5 files changed

+39
-27
lines changed

5 files changed

+39
-27
lines changed

src/_layouts/base.njk

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
<nav class="nav">
2424
<div class="nav-accent-angle"></div>
2525
<div class="nav-logo">
26-
<a href="/">codeGROOVE</a>
26+
<a href="/"><span class="logo-prefix">≡</span>codeGROOVE</a>
2727
</div>
2828
<ul class="nav-links">
29-
<li><a href="/products/">products</a></li>
30-
<li><a href="/oss/">oss</a></li>
31-
<li><a href="/about/">about</a></li>
32-
<li><a href="/security/">security</a></li>
29+
<li><a href="/about/"><span class="bracket">【</span>about<span class="bracket">】</span></a></li>
30+
<li><a href="/products/"><span class="bracket">【</span>products<span class="bracket">】</span></a></li>
31+
<li><a href="/opensource/"><span class="bracket">【</span>opensource<span class="bracket">】</span></a></li>
32+
<li><a href="/security/"><span class="bracket">【</span>security<span class="bracket">】</span></a></li>
3333
</ul>
3434
</nav>
3535

src/about/index.njk

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,23 +38,19 @@ title: About
3838
</div>
3939
</div>
4040

41-
<h2>WHY WE EXIST</h2>
41+
<h2>THE PROBLEM</h2>
4242

4343
<p>Code review latency is the invisible tax on engineering velocity. A 20-person team loses $1M/year in wait time. Engineers get blocked, context-switch, lose flow state. The best ones leave.</p>
4444

4545
<p>We've lived this problem at scale—from 2-person startups to Google-sized orgs. We know what works: intelligent assignment, turn-based tracking, zero-friction notifications. The tools existed in fragments. We're building them properly.</p>
4646

47-
<h2>OPEN SOURCE FIRST</h2>
47+
<h2>WHAT WE OFFER</h2>
4848

49-
<p>Our core tools are open source and free forever for OSS projects. We reinvest 10% of profits into the projects we depend on: FreeBSD, GhostBSD, NetBSD, Bluefin Linux, golangci-lint, and OSU Open Source Lab.</p>
49+
<p><strong><a href="/products/ready-to-review/">Ready to Review</a></strong> — 20X faster code reviews through intelligent assignment and turn-based tracking.</p>
5050

51-
<p>Check our work: <a href="https://github.com/codeGROOVE-dev">github.com/codeGROOVE-dev</a></p>
51+
<p><strong><a href="/opensource/">Open Source</a></strong> — Free forever for OSS projects. 10% of profits reinvested in the ecosystem.</p>
5252

53-
<h2>WHAT WE'RE BUILDING</h2>
54-
55-
<p><strong>Ready to Review</strong> — Intelligent PR assignment and turn-based tracking. Cuts review latency by 20X. Eliminates "who's blocking this?" hunts. 30-second GitHub integration. <a href="/products/ready-to-review/">Learn more →</a></p>
56-
57-
<p><strong>Goose</strong> — Auto-detects when PRs stall. Notifies the right person at the right time without micromanaging. <a href="https://github.com/codeGROOVE-dev/goose">View on GitHub →</a></p>
53+
<p><strong><a href="/security/">Security-First</a></strong> — Zero trust architecture. Built by ex-Google/Chainguard security engineers.</p>
5854

5955
</div>
6056
</section>

src/assets/css/style.css

Lines changed: 28 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -41,34 +41,44 @@ body {
4141
position: absolute;
4242
top: 0px;
4343
left: 0px;
44-
width: 12.5em;
45-
height: 3em;
44+
width: 17em;
45+
height: 2.25em;
4646
background: var(--yellow);
4747
clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
4848
z-index: 101;
4949
filter: drop-shadow(6px 6px 0px rgba(0, 0, 0, 1));
50+
transform: skewX(-20deg);
5051
}
5152

5253
.nav-logo {
5354
position: absolute;
54-
top: 8px;
55+
top: 3px;
5556
left: 13px;
5657
z-index: 102;
58+
height: 27.5px;
59+
display: flex;
60+
align-items: center;
5761
}
5862

5963
.nav-logo a {
6064
font-family: "Passion One", cursive;
61-
font-size: 27.6px;
62-
font-weight: 700;
65+
font-size: 28px;
66+
font-weight: 400;
6367
color: var(--black);
6468
text-decoration: none;
65-
transform: rotate(-4deg);
69+
transform: skewX(-20deg);
6670
display: inline-block;
6771
padding: 0;
68-
letter-spacing: 0.5px;
72+
letter-spacing: 3px;
6973
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
7074
}
7175

76+
.nav-logo .logo-prefix {
77+
color: #888;
78+
opacity: 0.75;
79+
margin-right: 5px;
80+
}
81+
7282
.nav-links {
7383
position: absolute;
7484
top: 0;
@@ -77,7 +87,7 @@ body {
7787
list-style: none;
7888
margin: 0;
7989
padding: 0;
80-
gap: 35px;
90+
gap: 20px;
8191
height: 27.5px;
8292
align-items: center;
8393
}
@@ -101,6 +111,11 @@ body {
101111
color: var(--cyan);
102112
}
103113

114+
.nav-links .bracket {
115+
color: #888;
116+
opacity: 0.75;
117+
}
118+
104119
/* Hero Section */
105120
.hero {
106121
position: relative;
@@ -311,7 +326,7 @@ body {
311326
font-family: "Passion One", cursive;
312327
font-size: 56px;
313328
font-weight: 700;
314-
margin-bottom: 40px;
329+
margin-bottom: 20px;
315330
color: var(--yellow);
316331
letter-spacing: 1px;
317332
}
@@ -785,16 +800,17 @@ body {
785800
@media (max-width: 768px) {
786801
.nav-logo {
787802
left: 10px;
788-
top: 10px;
803+
top: 2px;
789804
}
790805

791806
.nav-logo a {
792807
font-size: 20px;
808+
letter-spacing: 2px;
793809
}
794810

795811
.nav-accent-angle {
796-
width: 9em;
797-
height: 2.5em;
812+
width: 12em;
813+
height: 2em;
798814
}
799815

800816
.nav-links {
File renamed without changes.

src/qr/index.njk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ title: Welcome
2626
<div style="margin-bottom: 30px;">
2727
<h3 style="margin-bottom: 10px; color: var(--yellow); padding-bottom: 8px; border-bottom: 3px solid var(--yellow); display: inline-block;">For Open Source Enthusiasts</h3>
2828
<p>Want to see what we're building? Check out <strong><a href="https://github.com/codeGROOVE-dev/goose">Goose</a></strong> — our PR tracker that honks when you're the bottleneck.</p>
29-
<p style="margin-bottom: 0;">All our open source projects are free forever. <a href="/oss/">Learn more about our OSS commitment</a></p>
29+
<p style="margin-bottom: 0;">All our open source projects are free forever. <a href="/opensource/">Learn more about our OSS commitment</a></p>
3030
</div>
3131

3232
<div style="margin-bottom: 30px;">

0 commit comments

Comments
 (0)