"use client"; import { memo } from "react"; import { Link, useTranslation } from "@/i18n/navigation"; import { FOOTER_SECTIONS } from "@/config"; interface FooterProps { /** Hide link columns (about, support, legal, social) — used on homepage */ minimal?: boolean; } function FooterComponent({ minimal = false }: FooterProps) { const { t } = useTranslation("footer"); const { t: tCommon } = useTranslation("common"); return ( ); } export default memo(FooterComponent);