Trending.jsx 1.7 KB

1234567891011121314151617181920212223242526272829303132333435
  1. import React from 'react';
  2. import ReadMoreLink from "./ReadMoreLink";
  3. import TrendingCard from "./TrendingCard";
  4. const Trending = () => {
  5. return (
  6. <div className="trending">
  7. <div className="destinations-head">
  8. <h4 className="destinations-title">Trending stories</h4>
  9. <a href="#" className="destinations-more">View all ></a>
  10. </div>
  11. <div className="trending-blogs">
  12. <TrendingCard cardImg='trending-img1'
  13. cardTitle='The many benefits of taking a healing holiday'
  14. cardText='Helaing holidays’ are on the rise
  15. tohelp maximise your health and happines...' />
  16. <TrendingCard cardImg='trending-img2'
  17. cardTitle='The best Kyoto restaurant to try Japanese food'
  18. cardText=' From tofu to teahouses, here’s our guide to Kyoto’s best restaurants
  19. to visit...' />
  20. <TrendingCard cardImg='trending-img3'
  21. cardTitle='Skip Chichen Itza and head to this remote Yucatan'
  22. cardText=' It’s remote and challenging to get,
  23. but braving the jungle and exploring
  24. these ruins without the...' />
  25. <TrendingCard cardImg='trending-img4'
  26. cardTitle='Surf’s up at these beginner spots around the world'
  27. cardText=' If learning to surf has in on your to-
  28. do list for a while, the good news' />
  29. </div>
  30. </div>
  31. );
  32. };
  33. export default Trending;