"use client" import Link from "next/link" import { useState } from "react" import { ArrowRight } from "lucide-react" import { useTranslation, type Language } from "@/lib/i18n" export function Footer() { const [currentLang, setCurrentLang] = useState("en") const t = useTranslation(currentLang) return ( ) }