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}`;