Files
2023-01-23 20:44:12 -05:00

51 lines
1.3 KiB
JavaScript
Executable File

import React from 'react';
import TopHeader from '../components/_App/TopHeader';
import Navbar from '../components/_App/Navbar';
import MainBanner from '../components/HomeFour/MainBanner';
import Stats from '../components/HomeFour/Stats';
import AboutCovid19 from '../components/HomeFour/AboutCovid-19';
import Services from '../components/HomeFour/Services';
import OurExpertise from '../components/HomeFour/OurExpertise';
import SymptomsCovid19 from '../components/HomeFour/SymptomsCovid19';
import VideoIntro from '../components/Common/VideoIntro';
import OurDoctors from '../components/Common/OurDoctors';
import FaqSection from '../components/Common/FaqSection';
import LatestBlogPost from '../components/Common/LatestBlogPost';
import NewsletterForm from '../components/Common/NewsletterForm';
import Footer from '../components/_App/Footer';
const Index4 = () => {
return (
<>
<TopHeader />
<Navbar />
<MainBanner />
<Stats />
<AboutCovid19 />
<Services />
<OurExpertise />
<SymptomsCovid19 />
<VideoIntro />
<OurDoctors />
<FaqSection />
<LatestBlogPost />
<NewsletterForm />
<Footer />
</>
)
}
export default Index4;