type Feature = { title : string , description : string icon : React.ReactNode } const FeaturesSection = () => { const features: Feature[] = [ { title: 'Research-Based Learning', description: 'Create and access courses developed by leading researchers and educators in their fields.', icon: (
) }, { title: 'Knowledge Sharing', description: 'Join a vibrant community where educators and learners share insights and resources.', icon: (
) }, { title: 'Interactive Assessments', description: 'Validate learning through comprehensive quizzes and assessments designed by experts.', icon: (
) } ]; return(

Why Choose EduConnect?

Our platform connects researchers, educators, and learners in a dynamic environment focused on quality education and knowledge sharing.

{features.map((feature, index) => (
{feature.icon}

{feature.title}

{feature.description}

))}
) } export default FeaturesSection