const VALUES = [ { icon: "fa-solid fa-book-open", title: "Liberal Arts Foundation", desc: "Providing a broad intellectual foundation that encourages critical thinking, creativity, and the ability to adapt to a rapidly changing world.", }, { icon: "fa-solid fa-microscope", title: "Research Excellence", desc: "Fostering a culture of rigorous inquiry and innovation, supporting faculty and students in pushing the boundaries of knowledge.", }, { icon: "fa-solid fa-globe", title: "Global Perspective", desc: "Cultivating an inclusive environment that values diverse perspectives and prepares students to engage with complex global challenges.", }, ]; const Mission = () => { return (
Core Principles

Our Mission & Values

We are committed to advancing human knowledge and cultivating responsible global citizens through transformative education.

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

{item.title}

{item.desc}

))}
); }; export default Mission;