From 78ba162376f74f1f80786fa59f77f9fa7f13fe1d Mon Sep 17 00:00:00 2001 From: davesta <136373423+davestaxcp@users.noreply.github.com> Date: Mon, 20 Apr 2026 16:15:54 -0600 Subject: [PATCH] Update Footer.astro differentiate where current 'discussions' should go and the 'archived forums' of the past in footer on website Signed-off-by: davesta <136373423+davestaxcp@users.noreply.github.com> --- src/components/Footer.astro | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Footer.astro b/src/components/Footer.astro index cae7f84..205d0c9 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -19,7 +19,8 @@ const resourceLinks = [ const communityLinks = [ { label: "Twitter", href: "https://twitter.com/CounterpartyXCP" }, { label: "Telegram", href: "https://t.me/+hgJVFwSbZUkxYjgx" }, - { label: "Forum", href: "https://forums.counterparty.io/" }, + { label: "Discussions", href: "https://github.com/CounterpartyXCP/CIPs/discussions" }, + { label: "Archived Forum", href: "https://forums.counterparty.io/" }, ]; ---