let courseData = [ { id : "1", title : "Life History of Dr. Maria Montessori", chapter : "1", Program : "Graduate Program", img : "../../assets/course1.jpg" }, { id : "2", title : "Introduction to Montessori Methods", chapter : "2", Program : "Graduate Program", img : "../../assets/course2.jpg" }, { id : "3", title : "Exercises on Practical Life", chapter : "3", Program : "Graduate Program", img : "../../assets/course3.jpg" } ]; export default function Index() { return (

Continue Learning

{courseData.map(data=>(

{data.title}

Chapter {data.chapter} •   {data.Program}

))}
) }