import clsx from 'clsx'; import { Trans, useTranslation } from 'next-i18next'; type Props = { className?: string; }; const Footer: React.FC = ({ className }) => { const { t } = useTranslation(); return (

{t('common.footer.license')}

A passion project by Amruth Pillai

); }; export default Footer;