Footer.js 377 B

123456789101112131415
  1. import styles from "styles/Footer.module.scss";
  2. import GetIcon from "components/GetIcon";
  3. const Footer = () => {
  4. return (
  5. <footer className={styles.footer}>
  6. <p>
  7. <GetIcon icon="BsFillHeartFill" size={22} color="#da0037" /> <a href="http://gitlab.a-level.com.ua/Alex.ElRubio">Larychev Oleksandr</a>
  8. </p>
  9. </footer>
  10. );
  11. };
  12. export default Footer;