import { ExternalLink } from 'lucide-react'; import { useTelegram } from '@/hooks/useTelegram'; import { useTranslation } from '@/i18n'; interface SocialLink { name: string; url: string; icon: string; color: string; descriptionKey: string; } const SOCIAL_LINKS: SocialLink[] = [ { name: 'Instagram', url: 'https://www.instagram.com/pezkuwichain', icon: '📸', color: 'from-pink-500 to-purple-600', descriptionKey: 'social.instagram', }, { name: 'TikTok', url: 'https://www.tiktok.com/@pezkuwi.chain', icon: '🎵', color: 'from-gray-800 to-gray-900', descriptionKey: 'social.tiktok', }, { name: 'Snapchat', url: 'https://www.snapchat.com/add/pezkuwichain', icon: '👻', color: 'from-yellow-400 to-yellow-500', descriptionKey: 'social.snapchat', }, { name: 'Telegram', url: 'https://t.me/dijitalkurdistan', icon: '📢', color: 'from-blue-400 to-blue-600', descriptionKey: 'social.telegram', }, { name: 'X (Twitter)', url: 'https://x.com/pezkuwichain', icon: '𝕏', color: 'from-gray-700 to-gray-900', descriptionKey: 'social.twitter', }, { name: 'YouTube', url: 'https://www.youtube.com/@SatoshiQazi', icon: '▶️', color: 'from-red-500 to-red-700', descriptionKey: 'social.youtube', }, { name: 'Facebook', url: 'https://www.facebook.com/people/Pezkuwi-Chain/61587122224932/', icon: '📘', color: 'from-blue-600 to-blue-800', descriptionKey: 'social.facebook', }, { name: 'Discord', url: 'https://discord.gg/Y3VyEC6h8W', icon: '💬', color: 'from-indigo-500 to-purple-600', descriptionKey: 'social.discord', }, ]; export function SocialLinks() { const { openLink, hapticImpact } = useTelegram(); const { t } = useTranslation(); const handleClick = (url: string) => { hapticImpact('light'); openLink(url); }; return (

{t('social.followUs')}

{t('social.stayConnected')}

{SOCIAL_LINKS.map((link) => ( ))}
); }