import { ExternalLink } from 'lucide-react'; import { useTelegram } from '@/hooks/useTelegram'; interface SocialLink { name: string; url: string; icon: string; color: string; description: string; } const SOCIAL_LINKS: SocialLink[] = [ { name: 'Instagram', url: 'https://www.instagram.com/pezkuwichain', icon: '📸', color: 'from-pink-500 to-purple-600', description: 'Wêne û Story', }, { name: 'TikTok', url: 'https://www.tiktok.com/@pezkuwi.chain', icon: '🎵', color: 'from-gray-800 to-gray-900', description: 'Vîdyoyên kurt', }, { name: 'Snapchat', url: 'https://www.snapchat.com/add/pezkuwichain', icon: '👻', color: 'from-yellow-400 to-yellow-500', description: 'Snap bike!', }, { name: 'Telegram', url: 'https://t.me/pezkuwichain', icon: '📢', color: 'from-blue-400 to-blue-600', description: 'Kanala fermî', }, { name: 'X (Twitter)', url: 'https://x.com/pezkuwichain', icon: '𝕏', color: 'from-gray-700 to-gray-900', description: 'Nûçeyên rojane', }, { name: 'YouTube', url: 'https://www.youtube.com/@SatoshiQazi', icon: '▶️', color: 'from-red-500 to-red-700', description: 'Vîdyoyên me', }, { name: 'Facebook', url: 'https://www.facebook.com/people/Pezkuwi-Chain/61587122224932/', icon: '📘', color: 'from-blue-600 to-blue-800', description: 'Rûpela fermî', }, { name: 'Discord', url: 'https://discord.gg/Y3VyEC6h8W', icon: '💬', color: 'from-indigo-500 to-purple-600', description: 'Civaka me', }, ]; export function SocialLinks() { const { openLink, hapticImpact } = useTelegram(); const handleClick = (url: string) => { hapticImpact('light'); openLink(url); }; return (
Bi me re têkiliyê ragire û nûçeyên herî dawî bistîne!