const TIMELINE = [ { year: "1895", title: "Foundation", desc: "Established as an independent institute for liberal studies by a group of visionary scholars.", side: "left" }, { year: "1945", title: "Post-War Expansion", desc: "Expanded faculties to include modern sciences and established the first dedicated research hub.", side: "right" }, { year: "1982", title: "Global Partnerships", desc: "Initiated formal exchange programs and research partnerships with leading universities worldwide.", side: "left" }, { year: "2020", title: "Modern Research Era", desc: "Inauguration of the new interdisciplinary research center, focusing on sustainable global development.", side: "right" }, ]; const HistoryTimeline = () => { return (

Our History

A legacy of academic excellence spanning over a century.

{TIMELINE.map((item, i) => (

{item.year}

{item.title}

{item.desc}

))}
); }; export default HistoryTimeline;