App.js 631 B

12345678910111213141516171819202122232425
  1. import Header from "./components/Header";
  2. import Heading from "./components/Heading";
  3. import Section2 from "./components/Section2";
  4. import Destinations from "./components/Destinations";
  5. import Guides from "./components/Guides";
  6. import Testimonials from "./components/Testimonials";
  7. import Trending from "./components/Trending";
  8. import Footer from "./components/Footer";
  9. function App() {
  10. return (
  11. <div className="App">
  12. <Header />
  13. <Heading />
  14. <Section2 />
  15. <Destinations />
  16. <Guides />
  17. <Testimonials />
  18. <Trending />
  19. <Footer />
  20. </div>
  21. );
  22. }
  23. export default App;