From df2de33a1015b5ea4ccb64415962f5ca09260a7e Mon Sep 17 00:00:00 2001
From: Jeff Emmett
Date: Mon, 2 Mar 2026 17:57:58 -0800
Subject: [PATCH] feat: make OSS tool cards clickable links to repos/websites
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Each card in "Built on the best of open source" now links to the
project's GitHub repo or official website:
FolkJS → folk.computer, Automerge → automerge.org,
WebAuthn → webauthn.io, Discourse/Typst/Immich/PeerTube/Plausible/
Safe/Docker/Hono → GitHub repos, Leaflet → leafletjs.com,
Matrix → matrix.org
Co-Authored-By: Claude Opus 4.6
---
index.html | 62 ++++++++++++++++++++++++++++++------------------------
1 file changed, 34 insertions(+), 28 deletions(-)
diff --git a/index.html b/index.html
index f54ca1e..b776e46 100644
--- a/index.html
+++ b/index.html
@@ -601,10 +601,16 @@
border: 1px solid rgba(255,255,255,0.06);
border-radius: 12px;
padding: 1.25rem;
- transition: border-color 0.2s;
+ transition: border-color 0.2s, transform 0.15s;
+ text-decoration: none;
+ color: inherit;
+ display: block;
}
- .oss-card:hover { border-color: rgba(255,255,255,0.12); }
+ .oss-card:hover {
+ border-color: rgba(255,255,255,0.2);
+ transform: translateY(-2px);
+ }
.oss-card h4 {
font-size: 0.95rem;
@@ -1700,110 +1706,110 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
+