Files
KintCare-www/pages/service-details.js
2023-03-07 20:48:59 +01:00

60 lines
2.6 KiB
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 Footer from '../components/_App/Footer';
const ServiceDetails = () => {
let ourService = "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum."
return (
<>
<TopHeader />
<Navbar />
<PageBanner
pageTitle="Service Details"
homePageUrl="/"
homePageText="Home"
activePageText="Service Details"
bgImage="page-title-one"
/>
<div className="service-details-area ptb-100">
<div className="container">
<div className="services-details-img">
<img src="/images/service-details-bg.jpg" alt="Service Details" />
<h2>Our Hospital Always Provide Good Services</h2>
<p>{ourService}</p>
<blockquote>
<i className="icofont-quote-left"></i>
{ourService}
</blockquote>
<p>{ourService}</p>
</div>
<div className="row">
<div className="col-lg-5">
<div className="service-details-inner-left">
<img src="/images/signup-bg.jpg" alt="Service" />
</div>
</div>
<div className="col-lg-7">
<div className="service-details-inner">
<h2>We Always Take Care Our Patient</h2>
<p>{ourService}</p>
<p>{ourService}</p>
</div>
</div>
</div>
</div>
</div>
<Footer />
</>
)
}
export default ServiceDetails;