import Link from "next/link"; const LEADERS = [ { name: "Dr. Eleanor Laurent", role: "President", img: "https://storage.googleapis.com/uxpilot-auth.appspot.com/8ce6757572-cd9d4e986dee9e71d10c.png", }, { name: "Prof. Marcus Dubois", role: "Dean of Humanities", img: "https://storage.googleapis.com/uxpilot-auth.appspot.com/3aae15d87b-020f60df05ac2c52a087.png", }, { name: "Dr. Sophie Martin", role: "Dean of Research", img: "https://storage.googleapis.com/uxpilot-auth.appspot.com/3fc05a202c-26e5f00c35a829b5462d.png", }, { name: "Prof. Jean-Paul Roux", role: "Provost", img: "https://storage.googleapis.com/uxpilot-auth.appspot.com/3aae15d87b-c36f00cff7803c4209d4.png", }, ]; const LeadershipBoard = () => { return (
University Leadership

Meet Our Leaders

Guiding our academic vision and institutional strategy.

{LEADERS.map((leader, i) => (
{leader.name}

{leader.name}

{leader.role}

))}
); }; export default LeadershipBoard;