From bf3731072558cd7c41c3254b5351bc87ae0c1a31 Mon Sep 17 00:00:00 2001 From: yomzy2223 Date: Wed, 17 Jun 2026 12:20:19 +0100 Subject: [PATCH] feat: add @IQofficial X link to footer alongside existing handle Add the official @IQofficial X account link next to the existing @IQAICOM link in the footer social links. Labels distinguish the two: "X (IQ)" -> @IQofficial, "X (IQ AI)" -> @IQAICOM. Closes EveripediaNetwork/issues#5018 Co-Authored-By: Claude Opus 4.8 (1M context) --- src/components/layouts/Footer.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/layouts/Footer.tsx b/src/components/layouts/Footer.tsx index aed9106..3570b58 100644 --- a/src/components/layouts/Footer.tsx +++ b/src/components/layouts/Footer.tsx @@ -12,7 +12,8 @@ const products = [ ]; const socialLinks = [ - { name: "X", href: "https://x.com/IQofficial" }, + { name: "X (IQ)", href: "https://x.com/IQofficial" }, + { name: "X (IQ AI)", href: "https://x.com/IQAICOM" }, { name: "Discord", href: "https://discord.com/invite/x9EWvTcPXt" }, { name: "Telegram", href: "https://t.me/everipedia" }, ];