import Link from "next/link"; const CENTERS = [ { tag: "Biosciences", tagColor: "blue", title: "Institut Pasteur Collaborative Lab", desc: "A premier center focusing on immunology, genetics, and infectious diseases.", img: "https://storage.googleapis.com/uxpilot-auth.appspot.com/115ee2f067-72629210549870cf0d35.png", href: "#", }, { tag: "Humanities", tagColor: "yellow", title: "Center for European Studies", desc: "Housing over 2 million volumes and dedicated to historical and sociological research.", img: "https://storage.googleapis.com/uxpilot-auth.appspot.com/c11358a8da-a7b331f85d1fbd27c851.png", href: "#", }, { tag: "Technology", tagColor: "green", title: "AI & Robotics Institute", desc: "Pioneering developments in machine learning, automation, and computational science.", img: "https://storage.googleapis.com/uxpilot-auth.appspot.com/97fca8b57f-238aa78a799f22cf1cd1.png", href: "#", }, ]; const Campus = () => { return (

Campus & Research Centers

State-of-the-art facilities nestled in the historic Latin Quarter, designed to foster innovation and collaboration.

{CENTERS.map((center, i) => (
{center.title}
{center.tag}

{center.title}

{center.desc}

Explore Facility
))}
); }; export default Campus;