Heading.jsx 751 B

1234567891011121314151617181920212223
  1. import React from 'react';
  2. import thousand from "../img/thousand-011.png"
  3. import Button from "./Button";
  4. import SectionText from "./SectionText";
  5. const Heading = () => {
  6. return (
  7. <div className="heading">
  8. <div className="heading-box">
  9. <h4 className="heading-box-title">
  10. Explore and Travel
  11. </h4>
  12. <SectionText className='heading-box-text' innerText='Holiday Finder'/>
  13. <Button buttonText='Explore' className='heading-box-button'/>
  14. </div>
  15. <div className="heading-img-box">
  16. <img src={thousand} alt="picture" width="687px" height="654px" />
  17. </div>
  18. </div>
  19. );
  20. };
  21. export default Heading;