Files
cmc_frontend/src/components/about/Services.tsx
2025-10-09 20:05:39 +05:30

70 lines
2.5 KiB
TypeScript

import React from 'react';
import { Leaf, Car, Activity, Globe } from 'lucide-react';
const Services = () => {
const services = [
{
icon: <Leaf className="w-6 h-6" />,
title: "Multi-system Polytrauma",
description: "Comprehensive care for patients with multiple severe injuries requiring urgent intervention."
},
{
icon: <Car className="w-6 h-6" />,
title: "Road Traffic Injuries",
description: "Expert trauma management for accidents involving motorbikes, cars, and other vehicles."
},
{
icon: <Activity className="w-6 h-6" />,
title: "Falls & Accidents",
description: "Specialized treatment for injuries from falls, industrial incidents, and agricultural accidents."
},
{
icon: <Globe className="w-6 h-6" />,
title: "Referrals",
description: "Providing trauma care support for referrals from Tamil Nadu, Andhra Pradesh, Karnataka, and overseas."
}
];
return (
<section className="py-8 sm:py-12" style={{ backgroundColor: '#f4f4f4' }}>
<div className="max-w-7xl mx-auto px-4">
<h2 className="text-2xl sm:text-3xl font-semibold text-center mb-2" style={{ color: '#012068' }}>
Our Services
</h2>
<h2 className="text-md sm:text-xl font-normal text-center mb-8 sm:mb-12">
We provide urgent care for
</h2>
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
{services.map((service, index) => (
<div
key={index}
className="bg-white rounded-lg p-6 border border-gray-300 hover:shadow-lg transition-shadow duration-300"
>
<div className="flex items-start space-x-4">
<div
className="w-12 h-12 rounded-lg flex items-center justify-center flex-shrink-0"
style={{ backgroundColor: '#012068' }}
>
<div className="text-white">
{service.icon}
</div>
</div>
<div className="flex-1">
<h3 className="text-lg font-medium mb-2" style={{ color: '#012068' }}>
{service.title}
</h3>
<p className="text-base leading-relaxed"style={{ color: '#333' }}>
{service.description}
</p>
</div>
</div>
</div>
))}
</div>
</div>
</section>
);
};
export default Services;