"use client" import { Button } from "@/components/ui/button" import { TwitterIcon, GithubIcon, GlobeIcon } from "lucide-react" import Link from "next/link" import { useTranslations } from "next-intl" import Image from "next/image" interface FooterProps { locale: string } export default function Footer({ locale }: FooterProps) { const t = useTranslations("footer") const currentYear = new Date().getFullYear() return ( ) }