import { motion } from 'framer-motion' import { Backpack, Shirt, Users, Heart, School, Home } from 'lucide-react' import { SectionHeader } from '../ui/SectionHeader' export function ProgramsSection() { const programs = [ { icon: Backpack, title: "School Supplies", description: "Essential learning materials including notebooks, pens, calculators, and art supplies", impact: "2,847 students equipped", color: "from-blue-500 to-blue-600" }, { icon: Shirt, title: "Clothing Support", description: "Quality clothing, shoes, and seasonal items to help students feel confident", impact: "1,203 wardrobes completed", color: "from-green-500 to-green-600" }, { icon: Users, title: "Emergency Assistance", description: "Rapid response for urgent family needs including food, shelter, and utilities", impact: "856 families supported", color: "from-red-500 to-red-600" }, { icon: School, title: "Educational Technology", description: "Laptops, tablets, and internet access for remote learning success", impact: "645 devices provided", color: "from-purple-500 to-purple-600" }, { icon: Heart, title: "Mentorship Programs", description: "One-on-one support and guidance for academic and personal growth", impact: "432 mentor relationships", color: "from-pink-500 to-pink-600" }, { icon: Home, title: "Family Support Services", description: "Comprehensive assistance for housing, transportation, and childcare", impact: "298 families stabilized", color: "from-orange-500 to-orange-600" } ] return (
{programs.map((program, index) => (

{program.title}

{program.description}

📊 {program.impact}

))}
{/* Call to Action */} Request Program Support
) } export default ProgramsSection