42 lines
1.8 KiB
JavaScript
42 lines
1.8 KiB
JavaScript
import React, { Fragment } from 'react';
|
|
import Navbar2 from '../../components/Navbar2/Navbar2';
|
|
import PageTitle from '../../components/pagetitle/PageTitle'
|
|
import About from '../../components/about/about';
|
|
import ServiceSection from '../../components/ServiceSection/ServiceSection';
|
|
import CampaignSection from '../../components/CampaignSection/CampaignSection';
|
|
import Scrollbar from '../../components/scrollbar/scrollbar'
|
|
import TeamSection from '../../components/TeamSection/TeamSection';
|
|
import Testimonial from '../../components/Testimonial/Testimonial';
|
|
import FunFact from '../../components/FunFact/FunFact';
|
|
import Donors from '../../components/aboutPage/Donors';
|
|
import PartnerSection from '../../components/PartnerSection/PartnerSection';
|
|
import Footer from '../../components/footer/Footer';
|
|
import abimg from '/public/images/about-s2.jpg'
|
|
import AboutSection from '../../components/aboutPage/AboutSection';
|
|
import ServicesSection from '../../components/aboutPage/SevicesSection';
|
|
import TeamsSection from '../../components/aboutPage/TeamSection';
|
|
import TestimonialSection from '../../components/aboutPage/TestimonialSection';
|
|
import TestimonialSection2 from '../../components/aboutPage/TestimonialSection2';
|
|
|
|
const AboutPage = () => {
|
|
return (
|
|
<Fragment>
|
|
<Navbar2 />
|
|
<PageTitle pageTitle={'About Us'} pagesub={'About'} />
|
|
<AboutSection abimg={abimg} abClass={'wpo-about-section-s2'}/>
|
|
<ServicesSection />
|
|
{/* <CampaignSection /> */}
|
|
{/* <Testimonial /> */}
|
|
{/* <FunFact /> */}
|
|
<TestimonialSection abimg={abimg}/>
|
|
<TestimonialSection2 abimg={abimg}/>
|
|
{/* <TeamsSection /> */}
|
|
<Donors />
|
|
{/* <PartnerSection/> */}
|
|
<Footer />
|
|
<Scrollbar />
|
|
</Fragment>
|
|
)
|
|
};
|
|
export default AboutPage;
|