2025-08-08 11:53:47 +05:30

25 lines
845 B
JavaScript

import React, { Fragment } from 'react';
import Navbar2 from '../../components/Navbar2/Navbar2';
import PageTitle from '../../components/pagetitle/PageTitle'
import Testimonial from '../../components/Testimonial/Testimonial';
import Scrollbar from '../../components/scrollbar/scrollbar'
import Donors from '../../components/Donors/Donors';
import PartnerSection from '../../components/PartnerSection/PartnerSection';
import Footer from '../../components/footer/Footer';
const TestimonialPage = () => {
return (
<Fragment>
<Navbar2 />
<PageTitle pageTitle={'Testimonial'} pagesub={'Testimonial'} />
<Testimonial tmClass={'pt-100'}/>
<Donors />
<PartnerSection/>
<Footer />
<Scrollbar />
</Fragment>
)
};
export default TestimonialPage;