From 40fb2bfd800cf779d451ee55a13e6e0debc95032 Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Thu, 26 Feb 2026 20:28:53 +0000 Subject: [PATCH] Add CoMaps to open letter signatories --- public/img/logos/comaps.app.svg | 5 +++++ src/data/signatures.yaml | 3 +++ src/pages/open-letter.astro | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 public/img/logos/comaps.app.svg diff --git a/public/img/logos/comaps.app.svg b/public/img/logos/comaps.app.svg new file mode 100644 index 0000000..0797131 --- /dev/null +++ b/public/img/logos/comaps.app.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/data/signatures.yaml b/src/data/signatures.yaml index 7dca74d..f8d709c 100644 --- a/src/data/signatures.yaml +++ b/src/data/signatures.yaml @@ -36,6 +36,9 @@ url: "codeberg.org" poc: "Gusted " region: "DE" +- organization: "CoMaps" + url: "comaps.app" + poc: "hello@comaps.app" - organization: "Cryptee" url: "crypt.ee" poc: "John Ozbay " diff --git a/src/pages/open-letter.astro b/src/pages/open-letter.astro index 8ea8690..9a47012 100644 --- a/src/pages/open-letter.astro +++ b/src/pages/open-letter.astro @@ -21,7 +21,7 @@ function regionFlag(code?: string): string { } // Logos stored as SVG for these domains; all others are PNG -const svgLogos = new Set(["appfair.org", "auroraoss.com", "guardianproject.info", "fastmail.com", "jmp.chat", "kde.org", "osmfoundation.org", "molly.im"]); +const svgLogos = new Set(["appfair.org", "auroraoss.com", "comaps.app", "guardianproject.info", "fastmail.com", "jmp.chat", "kde.org", "osmfoundation.org", "molly.im"]); function logoPath(url: string): string { const ext = svgLogos.has(url) ? "svg" : "png"; return `/img/logos/${url}.${ext}`;