janahan-law/pages/about/racial-justice.js
2025-08-14 18:57:11 +05:30

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;