From 0ccb5a144ef436168ba1798df73afcee3915e6fb Mon Sep 17 00:00:00 2001 From: Lucas Winther Date: Tue, 18 Aug 2026 22:33:53 +0200 Subject: [PATCH] feat(colophon): credit u/eriatilox for ideas too MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Second name on the list, and the first from somewhere other than a fork — so the doc comment stops calling this a list of forks, and says what the `handle` field now carries: it renders verbatim, a bare handle meaning GitHub and `u/` meaning Reddit, rather than a `platform` field nobody would keep consistent across two entries. Co-Authored-By: Claude Opus 5 (1M context) --- src/client/components/Colophon.tsx | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/src/client/components/Colophon.tsx b/src/client/components/Colophon.tsx index a605d33..33ff868 100644 --- a/src/client/components/Colophon.tsx +++ b/src/client/components/Colophon.tsx @@ -43,22 +43,30 @@ const LINK = "text-muted underline decoration-hairline underline-offset-2 transition-colors duration-150 hover:text-ink hover:decoration-near"; /** - * Forks whose ideas ended up here. + * People whose ideas ended up here. * * Ideas and design, not code — nothing in this list carries a licence * obligation, which is why it sits here as thanks rather than in NOTICE with * the terms. Handles rather than names: a handle is verifiable and stable, and - * whoever is behind a fork does not always publish a name to credit. + * someone who suggests something under a handle has not offered a name to use. + * + * `handle` renders verbatim, so it carries its own platform — a bare handle is + * GitHub, `u/` is Reddit. That beats a `platform` field nobody would keep + * consistent for a list this short. * * Unlike the source and studio credits above, this one cannot be derived from - * the feed — nothing in the data knows a fork exists. Hardcoded on purpose; - * adding another is one line. + * the feed — nothing in the data knows these people exist. Hardcoded on + * purpose; adding another is one line. */ export const IDEA_CREDITS = [ { handle: "phuduong85", url: "https://github.com/phuduong85/gacha-event-tracker", }, + { + handle: "u/eriatilox", + url: "https://www.reddit.com/user/eriatilox/", + }, ] as const; /**