import { cn } from "@core/utils/cn.ts"; import { Trans, useTranslation } from "react-i18next"; type FooterProps = { className?: string; }; const Footer = ({ className, ...props }: FooterProps) => { const { t } = useTranslation(); return ( ); }; export default Footer;