import NewsCard from "./NewsCard"; const news = [ { category: "Campus", date: "Oct 12, 2024", title: "New Liberal Arts Library Wing Opens to Students", excerpt: "The state-of-the-art facility provides expanded collaborative spaces and access to over 50,000 new digital and print resources for our growing student body.", image: "https://storage.googleapis.com/uxpilot-auth.appspot.com/8eafd095d9-314bdad36b2119266084.png", }, { category: "Partnerships", date: "Oct 10, 2024", title: "ULP Announces Strategic Alliance with TechGlobal Institute", excerpt: "A new partnership aimed at bridging the gap between liberal arts education and emerging technological paradigms in the 21st century.", icon: "fas fa-handshake", }, { category: "Events", date: "Oct 05, 2024", title: "Annual Global Ethics Symposium Draws Record Attendance", excerpt: "Scholars from over 40 countries gathered at ULP this weekend to discuss the evolving landscape of international human rights and digital privacy.", image: "https://storage.googleapis.com/uxpilot-auth.appspot.com/fc832714d8-ee7527b4d94c300aae71.png", }, { category: "Research", date: "Sep 28, 2024", title: "Department of Sociology Publishes Landmark Study on Urban Migration", excerpt: "A comprehensive 5-year study reveals shifting demographic patterns in post-industrial European cities, highlighting new socio-economic challenges.", icon: "fas fa-flask", }, ]; export default function NewsGrid() { return (
{news.map((item) => ( ))}
{/* Pagination */}
...
); }