| import React from "react"; | |
| import Hero from "../sections/about/Hero"; | |
| import AboutUs from "../sections/about/AboutUs"; | |
| import VarDiGSection from "../sections/about/VarDiGSection"; | |
| import OrganizationLeaders from "../sections/about/Leaders"; | |
| const About = () => { | |
| return ( | |
| <> | |
| <Hero /> | |
| <AboutUs /> | |
| <VarDiGSection /> | |
| <OrganizationLeaders /> | |
| </> | |
| ); | |
| }; | |
| export default About; |