i-darrshan's picture
initial push of the update
8b105ad
raw
history blame contribute delete
407 Bytes
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;