Section2.jsx 989 B

1234567891011121314151617181920212223242526
  1. import React from 'react';
  2. import thousand from "../img/Thousand-012.png"
  3. import SectionText from "./SectionText";
  4. const Section2 = () => {
  5. return (
  6. <div className="section2">
  7. <div className="section2-img">
  8. <img src={thousand} alt="picture" width="659px" height="534px" />
  9. </div>
  10. <div className="section2-inner">
  11. <h4 className="section2-inner-title">
  12. A new way to explore the world
  13. </h4>
  14. <SectionText className='section2-inner-text' innerText=' For decades travellers have reached for Lonely Planet books when looking to plan and execute their
  15. perfect
  16. trip, but now, they can also let Lonely Planet Experiences lead the way' />
  17. <a href="#" className="section2-inner-button">
  18. Learn more
  19. </a>
  20. </div>
  21. </div>
  22. );
  23. };
  24. export default Section2;