35 lines
1.2 KiB
JavaScript
35 lines
1.2 KiB
JavaScript
import React from 'react';
|
|
import useToggle from '../../Hooks/useToggle';
|
|
import BackToTop from '../BackToTop';
|
|
import SignupHomeEight from '../HomeEight/SignupHomeEight';
|
|
import FooterHomeOne from '../HomeOne/FooterHomeOne';
|
|
import SponserHomeTwo from '../HomeTwo/SponserHomeTwo';
|
|
import Drawer from '../Mobile/Drawer';
|
|
import HeaderAbout from './HeaderAbout';
|
|
import HeroAbout from './HeroAbout';
|
|
import ServicesAbout from './ServicesAbout';
|
|
import TeamAbout from './TeamAbout';
|
|
import StickyHeaderNav from '../StickyHeader/StickyHeaderNav';
|
|
import AboutTextComponent from '../AboutText/AboutText';
|
|
|
|
function AboutUs() {
|
|
const [drawer, drawerAction] = useToggle(false);
|
|
return (
|
|
<>
|
|
<Drawer drawer={drawer} action={drawerAction.toggle} />
|
|
{/* <StickyHeaderNav action={drawerAction.toggle} /> */}
|
|
<HeaderAbout drawer={drawer} action={drawerAction.toggle} />
|
|
<HeroAbout />
|
|
<ServicesAbout />
|
|
{/* <TeamAbout />*/}
|
|
{/* <SponserHomeTwo />
|
|
<SignupHomeEight />*/}
|
|
<AboutTextComponent/>
|
|
<FooterHomeOne className="appie-footer-about-area" />
|
|
<BackToTop />
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default AboutUs;
|