64 lines
2.6 KiB
TypeScript
64 lines
2.6 KiB
TypeScript
import React from 'react';
|
|
import { Building2, Home } from 'lucide-react';
|
|
|
|
const PatientCareCards = () => {
|
|
return (
|
|
<section className="py-8 sm:py-12" style={{ backgroundColor: '#f4f4f4' }}>
|
|
<div className="max-w-7xl mx-auto px-4">
|
|
<div className="grid grid-cols-1 md:grid-cols-2 gap-6 lg:gap-8">
|
|
{/* Inpatient Services */}
|
|
<div className="bg-white rounded-lg p-6 border-l-4" style={{ borderColor: '#012068' }}>
|
|
<div className="flex items-center mb-4">
|
|
<div
|
|
className="w-10 h-10 rounded-full flex items-center justify-center mr-3"
|
|
style={{ backgroundColor: '#012068' }}
|
|
>
|
|
<Building2 className="w-5 h-5 text-white" />
|
|
</div>
|
|
<h2 className="text-xl font-semibold" style={{ color: '#012068' }}>
|
|
INPATIENT
|
|
</h2>
|
|
</div>
|
|
<p className="leading-relaxed mb-3 text-base" style={{ color: '#333' }}>
|
|
Different facilities available include Trauma Intensive Care Unit, General ward, Semiprivate accommodation
|
|
(with or without AC) and Private - single (with or without AC) & Deluxe rooms.
|
|
</p>
|
|
</div>
|
|
|
|
{/* Outpatient Services */}
|
|
<div className="bg-white rounded-lg p-6 border-l-4" style={{ borderColor: '#012068' }}>
|
|
<div className="flex items-center mb-4">
|
|
<div
|
|
className="w-10 h-10 rounded-full flex items-center justify-center mr-3"
|
|
style={{ backgroundColor: '#012068' }}
|
|
>
|
|
<Home className="w-5 h-5 text-white" />
|
|
</div>
|
|
<h2 className="text-xl font-semibold" style={{ color: '#012068' }}>
|
|
OUTPATIENT
|
|
</h2>
|
|
</div>
|
|
<ul className="text-sm space-y-2">
|
|
<li className="flex items-start" style={{ color: '#333' }}>
|
|
<span
|
|
className="w-2 h-2 rounded-full mr-3 mt-2"
|
|
style={{ backgroundColor: '#012068'}}
|
|
></span>
|
|
Trauma Surgery - Every Monday and Friday are OP days.
|
|
</li>
|
|
<li className="flex items-start" style={{ color: '#333' }}>
|
|
<span
|
|
className="w-2 h-2 rounded-full mr-3 mt-2"
|
|
style={{ backgroundColor: '#012068'}}
|
|
></span>
|
|
Acute Care Surgery Follow-up Clinic - Every Monday and Friday are OP days.
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default PatientCareCards; |