From cff5ae803286e85c878c38bee0aee2ceb2494899 Mon Sep 17 00:00:00 2001 From: Satoshi Qazi Muhammed Date: Wed, 29 Jul 2026 20:26:00 -0700 Subject: [PATCH] fix(social): point KurdMedia links at the canonical accounts t.me/pezkuwichain and twitter.com/pezkuwichain are both retired handles. The canonical set is t.me/kurdishmedya for the channel and x.com/bizinikiwi for X. --- web/src/pages/social/KurdMediaPage.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/pages/social/KurdMediaPage.tsx b/web/src/pages/social/KurdMediaPage.tsx index 9b42faa9..84e64437 100644 --- a/web/src/pages/social/KurdMediaPage.tsx +++ b/web/src/pages/social/KurdMediaPage.tsx @@ -30,9 +30,9 @@ const MEDIA_CHANNELS: MediaChannel[] = [ ]; const SOCIAL_PLATFORMS: SocialPlatform[] = [ - { id: 'telegram', name: 'Telegram', icon: '✈️', url: 'https://t.me/pezkuwichain', color: '#0088CC' }, + { id: 'telegram', name: 'Telegram', icon: '✈️', url: 'https://t.me/kurdishmedya', color: '#0088CC' }, { id: 'discord', name: 'Discord', icon: '💬', url: 'https://discord.gg/Y3VyEC6h8W', color: '#5865F2' }, - { id: 'twitter', name: 'X', icon: '🐦', url: 'https://twitter.com/pezkuwichain', color: '#1DA1F2' }, + { id: 'twitter', name: 'X', icon: '🐦', url: 'https://x.com/bizinikiwi', color: '#1DA1F2' }, { id: 'facebook', name: 'Facebook', icon: '📘', url: 'https://www.facebook.com/profile.php?id=61582484611719', color: '#1877F2' }, { id: 'medium', name: 'Medium', icon: '📝', url: 'https://medium.com/@pezkuwichain', color: '#555555' }, { id: 'github', name: 'GitHub', icon: '💻', url: 'https://github.com/pezkuwichain', color: '#333333' },