"use client"; import { memo } from "react"; import { Link, useTranslation } from "@/i18n/navigation"; import { FOOTER_SECTIONS } from "@/config"; function FooterComponent() { const { t } = useTranslation("footer"); const { t: tCommon } = useTranslation("common"); return ( ); } export default memo(FooterComponent);