const Footer = () => (
  <footer className="footer">
    <div className="container footer-inner">
      <span>© {new Date().getFullYear()} Mohamed Ahmed Issa</span>
      <span className="sep"></span>
      <a href="https://github.com/missacodes" target="_blank" rel="noreferrer">github</a>
      <a href="https://www.linkedin.com/in/mohamed-ahmed-issa/" target="_blank" rel="noreferrer">linkedin</a>
      <a href="mailto:issam223b@gmail.com">email</a>
    </div>
  </footer>
);

window.Footer = Footer;
