'use client'; import Link from 'next/link'; import { useTranslations } from 'next-intl'; import { MessageSquare, Heart } from 'lucide-react'; import { YoutubeIcon as Youtube } from '@/components/icons/YoutubeIcon'; import { GithubIcon as Github, TwitterIcon as Twitter } from '@/components/icons/BrandIcons'; export function Footer({ locale }: { locale: string }) { const t = useTranslations('footer'); return ( ); }