const researchers = [ { name: "Dr. Sarah Jenkins", field: "Cognitive Linguistics", bio: "Exploring the intersection of language processing and modern ethical frameworks in digital communication.", avatar: "https://storage.googleapis.com/uxpilot-auth.appspot.com/avatars/avatar-5.jpg", }, { name: "Prof. Marcus Chen", field: "Economic History", bio: "Recent recipient of the European Heritage Grant for his work on interwar economic policies.", avatar: "https://storage.googleapis.com/uxpilot-auth.appspot.com/avatars/avatar-4.jpg", }, { name: "Dr. Elena Rostova", field: "Political Science", bio: "Leading the new comparative study on post-war democratic institutions across Western Europe.", avatar: "https://storage.googleapis.com/uxpilot-auth.appspot.com/avatars/avatar-6.jpg", }, ]; export default function ResearcherSpotlight() { return (
Researcher Spotlight
View All
{researchers.map((r) => (
{r.name}
{r.name}

{r.field}

{r.bio}

))}
); }