From fa91c4e847814a54b0faf1103cd01365b0ba1640 Mon Sep 17 00:00:00 2001 From: JonKazama-Hellion Date: Wed, 6 May 2026 19:06:34 +0200 Subject: [PATCH] feat(branding): add BrandingLinks with Hellion Forge Discord invite --- HellionChat/Branding/BrandingLinks.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 HellionChat/Branding/BrandingLinks.cs diff --git a/HellionChat/Branding/BrandingLinks.cs b/HellionChat/Branding/BrandingLinks.cs new file mode 100644 index 0000000..0298469 --- /dev/null +++ b/HellionChat/Branding/BrandingLinks.cs @@ -0,0 +1,12 @@ +// HellionChat/Branding/BrandingLinks.cs +namespace HellionChat.Branding; + +// Centralised so a future invite rotation only touches one file. The same +// link is currently hard-coded in repo.json, README.md, SUPPORT.md, +// CONTRIBUTORS.md and HellionChat.yaml — those will be migrated to consume +// this constant in a separate housekeeping sweep, but that's out of scope +// for this Cycle. +internal static class BrandingLinks +{ + public const string HellionForgeDiscordInvite = "https://discord.gg/X9V7Kcv5gR"; +}