'use client'; import Image from 'next/image'; import { Link, Button } from '@heroui/react'; import { useLanguage } from '@/contexts/LanguageContext'; import { useTheme } from '@/contexts/ThemeContext'; export default function Footer() { const { t } = useLanguage(); const { theme } = useTheme(); const isDark = theme === 'dark'; 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 ( ); }