Footer.js 806 B

123456789101112131415161718192021222324
  1. import React from 'react';
  2. const Footer = () => {
  3. return (
  4. <footer className = "footer">
  5. <div className="footer-part contacts">
  6. <h4 className ="icon-location">Адрес</h4>
  7. <p> г. Харьков</p>
  8. <p>пл. Конституции, 26</p>
  9. </div>
  10. <div className="footer-part logo-box">
  11. <img src="../../images/logo.png" alt="logo"/>
  12. </div>
  13. <div className="footer-part contacts">
  14. <h4 className = "icon-phone"> Контакты</h4>
  15. <p>+38 ( 096 ) 123 - 45 - 67</p>
  16. <p>+38 ( 050 ) 123 - 45 - 67</p>
  17. <p> +38 ( 063 ) 123 - 45 - 67</p>
  18. </div>
  19. </footer>
  20. );
  21. };
  22. export default Footer;