Guides.jsx 955 B

1234567891011121314151617181920212223242526
  1. import React from 'react';
  2. import thousand from "../img/Thousand-03.png"
  3. import SectionText from "./SectionText";
  4. const Guides = () => {
  5. return (
  6. <div className="guides">
  7. <div className="guides-inner">
  8. <h4 className="guides-title section2-inner-title">
  9. Guides by Thousand <br />
  10. Sunny
  11. </h4>
  12. <SectionText
  13. className='guides-text section2-inner-text'
  14. innerText=' Packed with tips and advice from our on-the-ground experts, our city guides app (iOS and Android) is
  15. the ultimate resource before and during a trip.' />
  16. <a href="#" className="guides-button section2-inner-button">Download</a>
  17. </div>
  18. <div className="guides-img">
  19. <img src={thousand} alt="picture" />
  20. </div>
  21. </div>
  22. );
  23. };
  24. export default Guides;