Advertisement
Guest User

Untitled

a guest
Sep 21st, 2019
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. import React from 'react';
  2. import './footer.style.scss';
  3. import Logo from './logo.png';
  4. import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
  5. import { faFacebook, faInstagram, faYoutube } from '@fortawesome/free-brands-svg-icons';
  6. const Footer = () => {
  7. return (
  8. <div className='footer'>
  9. <div className='first'>
  10. <div className='logo'>
  11. <img src={Logo} alt='logo'></img>
  12. </div>
  13. <div className='content'>
  14. <div className='text'>Newspaper WordPress Theme is your news, entertainment, music fashion website. We provide you with the latest breaking news and videos straight from the entertainment industry.</div>
  15. <div className='contact'>Contact us: <a className='link' href=' test@coffee-blog.co'> test@coffee-blog.co</a></div>
  16. </div>
  17. <div className='social'>
  18. <ul>
  19. <li>
  20. <a className='fb' href='#'><FontAwesomeIcon icon={faFacebook} /></a>
  21. </li>
  22. <li>
  23. <a className='insta' href='#'><FontAwesomeIcon icon={faInstagram} /></a>
  24. </li>
  25. <li>
  26. <a className='youtube' href='#'><FontAwesomeIcon icon={faYoutube} /></a>
  27. </li>
  28. </ul>
  29. </div>
  30. </div>
  31. <div className='last'>
  32. <div className='last-div'>
  33. <div className='last-last-div'>© Newspaper WordPress Theme</div>
  34. </div>
  35. </div>
  36. </div>
  37. );
  38. }
  39.  
  40. export default Footer;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement