'use client'; import Image from 'next/image'; import { useLanguage } from '@/contexts/LanguageContext'; export default function Footer() { const { t } = useLanguage(); const socialIcons = [ { src: '/component-12.svg', alt: 'Twitter', width: 24, height: 24 }, { src: '/component-13.svg', alt: 'Discord', width: 24, height: 24 }, { src: '/component-14.svg', alt: 'Telegram', width: 24, height: 24 }, { src: '/component-15.svg', alt: 'Medium', width: 24, height: 24 } ]; return ( ); }