Further updates on 03-11-2025

This commit is contained in:
2025-11-03 13:45:52 +05:30
parent 5481f2e38a
commit 03f6e8432e
26 changed files with 2299 additions and 848 deletions

View File

@ -5,7 +5,7 @@ const Services = () => {
const services = [
{
icon: <Users className="w-6 h-6" />,
title: "Injury Prevention Outreach Activity",
title: "Injury Prevention - Outreach Activity",
description: "Community-based programs including first responder training for laypersons, schools and workplace groups. Education in helmet use, bleeding control, safe transport practices and initial life-saving care."
},
{
@ -26,7 +26,7 @@ const Services = () => {
];
return (
<section className="py-8 sm:py-12" style={{ backgroundColor: '#f4f4f4' }}>
<section className="py-8 sm:py-12" style={{ backgroundColor: '#ffffff' }}>
<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
@ -38,7 +38,7 @@ const Services = () => {
{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"
className="rounded-lg p-6 border border-gray-300 hover:shadow-lg transition-shadow duration-300" style={{ backgroundColor: '#f4f4f4' }}
>
<div className="flex items-start space-x-4">
<div