import { Link } from 'react-router-dom'; import { motion } from 'framer-motion'; import { HiArrowRight } from 'react-icons/hi'; import { PROGRAMS } from '../../utils/constants'; import './ProgramsGrid.css'; const PROGRAM_IMAGES = { medical: 'https://images.unsplash.com/photo-1584515933487-779824d29309?auto=format&fit=crop&q=80', education: 'https://images.unsplash.com/photo-1503676260728-1c00da094a0b?auto=format&fit=crop&q=80', animal: 'https://images.unsplash.com/photo-1454179083322-198bb4daae41?auto=format&fit=crop&q=80', disaster: 'https://images.unsplash.com/photo-1617494532490-297fc0eb515e?auto=format&fit=crop&q=80', elderly: 'https://images.unsplash.com/photo-1490349708435-19d432984978?auto=format&fit=crop&q=80', }; export default function ProgramsGrid() { return (
🌍 Our Programs

What We Do

We work across five critical areas to create lasting impact in communities that need it most.

{PROGRAMS.map((program, index) => ( {/* Background Image with Overlay */}
{/* Content */}

{program.title}

{program.description}

Learn More
))}
); }