"use client"; import { useTranslations } from "next-intl"; import { FaGithub, FaRegEnvelope } from "react-icons/fa"; import { Link, usePathname } from "@/utils/navigation"; import ThemeSwitcher from "./ThemeSwitcher"; export default function Footer() { const t = useTranslations("Footer"); const pathname = usePathname(); return ( ); }