| 12345678910111213141516171819202122 |
- import React from 'react';
- import Hero from "./Hero.jsx";
- import Business from "./Business.jsx";
- import Project from "./Project.jsx";
- import Partners from "./Partners.jsx";
- import Directions from "@/pages/main/Directions.jsx";
- import Footer from "@/pages/main/Footer.jsx";
- const Main = () => {
- return (
- <>
- <Hero/>
- <Business/>
- <Project/>
- <Partners/>
- <Directions/>
- <Footer/>
- </>
- );
- };
- export default Main;
|