import clsx from 'clsx'; import React from 'react'; import styles from './styles.scss'; type FooterProps = { className?: string; }; const Footer: React.FC = (props) => { return ( ); }; export default Footer;