AboutUs.js 654 B

12345678910111213141516
  1. import React from "react";
  2. import { Link } from "react-router-dom";
  3. export const AboutUs = () => {
  4. return(
  5. <div className="aboutUsStyle">
  6. <h2>
  7. Contacts of the creator this wonderful project:
  8. </h2>
  9. <a className='nav' target="_blank" href="https://t.me/ilunya_kozyr">Telegram</a>
  10. <a className='nav' target="_blank" href="mailto:ilunya.kozyr@gmail.com">Email</a>
  11. <a className='nav' target="_blank" href="https://github.com/IlliaKozyr">GitHub</a>
  12. <a className='nav' target="_blank" href="https://linkedin.com/in/ilunya-kozyr">Linkedin</a>
  13. </div>
  14. )
  15. }