index.tsx 501 B

12345678910111213141516171819202122
  1. import React from 'react';
  2. import Hero from "./Hero.jsx";
  3. import Business from "./Business.jsx";
  4. import Project from "./Project.jsx";
  5. import Partners from "./Partners.jsx";
  6. import Directions from "@/pages/main/Directions.jsx";
  7. import Footer from "@/pages/main/Footer.jsx";
  8. const Main = () => {
  9. return (
  10. <>
  11. <Hero/>
  12. <Business/>
  13. <Project/>
  14. <Partners/>
  15. <Directions/>
  16. <Footer/>
  17. </>
  18. );
  19. };
  20. export default Main;