"use client"; import React from "react"; import Link from "next/link"; import { useLocale, useTranslations } from "next-intl"; import { ArrowUp } from "lucide-react"; const Footer = () => { const locale = useLocale(); const t = useTranslations("footer"); const year = new Date().getFullYear(); const scrollToTop = () => { window.scrollTo({ top: 0, behavior: "smooth" }); }; return ( ); }; export default Footer;