23 lines
1.0 KiB
TypeScript
23 lines
1.0 KiB
TypeScript
import React from 'react';
|
|
|
|
const Introduction = () => {
|
|
return (
|
|
<section className="py-8 sm:py-12 bg-[#012068]">
|
|
<div className="max-w-7xl mx-auto px-4">
|
|
<p className="text-base sm:text-lg leading-relaxed text-white ">
|
|
Learn about our mission, vision, and the dedicated team behind the Trauma Care Center
|
|
at CMC Hospital, Ranipet campus. We are committed to delivering world-class emergency
|
|
and trauma services that focus on saving lives, reducing recovery time, and restoring
|
|
hope for patients and their families. Our center integrates advanced medical technology,
|
|
skilled professionals, and compassionate care to respond swiftly and effectively to
|
|
critical injuries and emergencies. With a holistic approach that spans emergency response,
|
|
surgical intervention, and rehabilitation, we strive to set new benchmarks in trauma
|
|
management and patient-centered care.
|
|
</p>
|
|
</div>
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default Introduction;
|