Footer.jsx 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. import React from 'react';
  2. import logo from "../img/logo.png"
  3. import Li from "./Li";
  4. import FooterItem from "./FooterItem";
  5. import SocialLogo from "./SocialLogo";
  6. import SocialMedia from "./SocialMedia";
  7. import FooterSection from "./FooterSection";
  8. const Footer = () => {
  9. return (
  10. <footer>
  11. <div className="footer-inner">
  12. <div className="footer-info">
  13. <div>
  14. <img className="footer-logo" src={logo} alt="logo" />
  15. </div>
  16. <p className="footer-desc">Plan and book your perfect trip with
  17. expert advice, travel tips destination
  18. information from us</p>
  19. <p className="footer-copyright">©2020 Thousand Sunny. All rights reserved</p>
  20. </div>
  21. <div className="footer-columns">
  22. <FooterSection title='Destinations' />
  23. <FooterSection title='Shop' />
  24. <FooterSection title='Interests' />
  25. </div>
  26. </div>
  27. <SocialMedia />
  28. </footer>
  29. );
  30. };
  31. export default Footer;