"use client"; import React from "react"; import Link from "next/link"; import { useLocale, useTranslations } from "next-intl"; import { Github, Linkedin, Mail, ArrowUp } from "lucide-react"; import { motion } from "framer-motion"; 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;