File size: 407 Bytes
62c3fe0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;