38 lines
1001 B
JavaScript
Executable File
38 lines
1001 B
JavaScript
Executable File
import React from 'react';
|
|
import TopHeader from '../components/_App/TopHeader';
|
|
import Navbar from '../components/_App/Navbar';
|
|
import PageBanner from '../components/Common/PageBanner';
|
|
import OurExpertise from '../components/HomeOne/OurExpertise';
|
|
import TestimonialSlider from '../components/Common/TestimonialSlider';
|
|
import OurDoctors from '../components/Common/OurDoctors';
|
|
import Footer from '../components/_App/Footer';
|
|
|
|
const Testimonials = () => {
|
|
return (
|
|
<>
|
|
<TopHeader />
|
|
|
|
<Navbar />
|
|
|
|
<PageBanner
|
|
pageTitle="Testimonials"
|
|
homePageUrl="/"
|
|
homePageText="Home"
|
|
activePageText="Testimonials"
|
|
bgImage="page-title-one"
|
|
/>
|
|
|
|
<div className="pt-100">
|
|
<OurExpertise />
|
|
</div>
|
|
|
|
<TestimonialSlider />
|
|
|
|
<OurDoctors />
|
|
|
|
<Footer />
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default Testimonials; |