import { Helmet } from 'react-helmet-async'; import { Link } from 'react-router-dom'; import { motion } from 'framer-motion'; import { HiHeart, HiUserGroup, HiHand, HiSparkles } from 'react-icons/hi'; const ways = [ { icon: , title: 'Make a Donation', desc: 'Donate securely via our donation page or use UPI / Bank Transfer. Every contribution creates real impact.', link: '/donate', btnText: 'Donate Now', color: '#EC4899', bg: '#fdf2f8', }, { icon: , title: 'Become a Volunteer', desc: 'Contact us to contribute your time or expertise. Together, we can make a difference on the ground.', link: '/volunteer', btnText: 'Join Us', color: '#2D6A4F', bg: '#ecfdf5', }, { icon: , title: 'Request Help', desc: 'In need of support? Submit a help request and our team will reach out.', link: '/help-request', btnText: 'Get Help', color: '#3B82F6', bg: '#eff6ff', }, { icon: , title: 'Corporate Partnership', desc: 'Corporate CSR partnerships aligned with the Companies Act. Let\'s create large-scale impact together.', link: '/contact', btnText: 'Partner With Us', color: '#F59E0B', bg: '#fffbeb', }, ]; export default function GetInvolved() { return ( <> Get Involved — Social Share and Care Foundation
🤝 Get Involved

Join the Movement

There are many ways to make a difference. Choose what works for you.

{ways.map((item, i) => (
{item.icon}

{item.title}

{item.desc}

{item.btnText}
))}
); }