21 lines
726 B
JavaScript
21 lines
726 B
JavaScript
import React, { Fragment } from 'react';
|
|
import Navbar2 from '../../components/Navbar2/Navbar2';
|
|
import PageTitle from '../../components/pagetitle/PageTitle'
|
|
import Scrollbar from '../../components/scrollbar/scrollbar'
|
|
import Footer from '../../components/footer/Footer';
|
|
import RacialJuctice from '../../components/racial-justice';
|
|
import racial from '/public/images/about/racial-justice-banner.png';
|
|
|
|
const AboutPage = () => {
|
|
return (
|
|
<Fragment>
|
|
<Navbar2 />
|
|
<PageTitle pageTitle={'Racial-Justice'} backgroundImage={racial} pagesub={'Racial-Justice'} />
|
|
<RacialJuctice />
|
|
<Footer />
|
|
<Scrollbar />
|
|
</Fragment>
|
|
)
|
|
};
|
|
export default AboutPage;
|