From f050a661e387f54dfe2b6440e73e3bed92ab5546 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 11 Jan 2026 10:22:47 +0000 Subject: [PATCH 1/2] revert: restore original landing page design Revert to the previous design that uses Space Mono font, cream background, dashed border highlight, and simpler styling without rounded corners and color accents. --- web/index.html | 271 ++++++++++++++++++------------------------------- 1 file changed, 98 insertions(+), 173 deletions(-) diff --git a/web/index.html b/web/index.html index 621b3cb..7dc62fe 100644 --- a/web/index.html +++ b/web/index.html @@ -7,7 +7,7 @@ - + @@ -413,12 +338,12 @@

Pre-commit hooks for AI agents

-
+
Human commits
~3s
Fast checks on staged files. Lint, format, type-check. You get feedback instantly and keep your flow.
-
+
Agent commits
~5m
Full test suite, security scans, build verification. The agent waits. You get merge-ready code that passes CI.
@@ -429,7 +354,7 @@

Pre-commit hooks for AI agents

How it works

-git commit
+git commit
|
v
.git/hooks/pre-commit # installed by apc
@@ -485,13 +410,13 @@

TOML config

Setup

# install
-cargo install agent-precommit
+cargo install agent-precommit

# init config (detects your stack)
-apc init --preset=rust
+apc init --preset=rust

# install git hook
-apc install
+apc install

# add to your agent instructions (CLAUDE.md, .cursor/rules):
# "Use AGENT_MODE=1 git commit when committing" @@ -500,7 +425,7 @@

Setup

Presets

-

Sensible defaults for common stacks.

+

Sensible defaults for common stacks.

python node From 871fc2f8635586070e53076173ea2ceb3ad4f0fe Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 11 Jan 2026 10:43:39 +0000 Subject: [PATCH 2/2] style: subtle color adjustments for distinction - Background: #f5f3ef -> #eeeae4 (slightly darker warm cream) - Accent: #1a1a1a -> #2d2926 (warm charcoal instead of pure black) --- web/index.html | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/web/index.html b/web/index.html index 7dc62fe..824ab74 100644 --- a/web/index.html +++ b/web/index.html @@ -17,8 +17,8 @@ body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; - background: #f5f3ef; - color: #1a1a1a; + background: #eeeae4; + color: #2d2926; line-height: 1.5; } @@ -40,7 +40,7 @@ } nav a { - color: #1a1a1a; + color: #2d2926; text-decoration: none; font-size: 15px; display: flex; @@ -79,7 +79,7 @@ .highlight { display: inline-block; - border: 2px dashed #1a1a1a; + border: 2px dashed #2d2926; padding: 0 8px; } @@ -160,7 +160,7 @@ } .flow-box { - background: #1a1a1a; + background: #2d2926; color: #e5e5e5; padding: 40px; font-family: 'Space Mono', monospace; @@ -232,7 +232,7 @@ } .code-block { - background: #1a1a1a; + background: #2d2926; color: #e5e5e5; padding: 32px 40px; font-family: 'Space Mono', monospace; @@ -259,7 +259,7 @@ } .preset-tag { - background: #1a1a1a; + background: #2d2926; color: #fff; padding: 12px 24px; font-family: 'Space Mono', monospace; @@ -284,7 +284,7 @@ display: inline-flex; align-items: center; gap: 10px; - background: #1a1a1a; + background: #2d2926; color: #fff; padding: 16px 32px; text-decoration: none; @@ -295,7 +295,7 @@ } .btn:hover { - background: #333; + background: #3d3a36; } .btn svg {