import { useTranslations } from 'next-intl' import Image from 'next/image' import Link from 'next/link' import { Instagram, Mail, Phone } from 'lucide-react' interface FooterProps { locale: string } export default function Footer({ locale }: FooterProps) { const t = useTranslations('footer') return ( ) }