import React from "react"; import Link from "next/link"; const ClickHandler = () => { window.scrollTo(10, 0); }; const featuresData = [ { icon: "fi flaticon-charity", title: "Make Donation", link: "/team", description: "Donate now to help those in need! Make a difference by taking action with your donation." }, { icon: "fi flaticon-conference-1", title: "Campaign Events", link: "/campaign", description: "Join us in supporting a worthy cause at our charity event, together we can make a difference." }, { icon: "fi flaticon-community", title: "Join Volunteer", link: "/volunteer", description: "Join our team of volunteers and help make a positive impact in your community today.." } ]; const Features2 = () => { return (
{featuresData.map((feature, index) => (

{feature.title}

{feature.description}

))}
); }; export default Features2;