const featuredPost = { id: 1, title: 'FutureFest 2024', href: '/events/versefest', description: 'Embrace the possibilities at FutureFest 2024, a landmark event that invites you to explore the converging worlds of technology, creativity, and sustainability.', date: 'Mar 16, 2020', datetime: '2024-03-16', } const posts = [ { id: 2, title: 'Building a Metaverse with Revenue: Insights from Arab Meta Summit 2022 Day 2', href: '/events/blockchainweek1', description: 'At the Arab Meta Summit 2022, Christopher K, co-founder and CEO of Aviva Technologies, shared valuable insights on how to build a successful and revenue-generating metaverse.', date: 'Dec 21, 2022', datetime: '2022-12-21', }, { id: 3, title: 'Real-World Applications of the Metaverse in AR: Insights from Omrei Abu Madi at the Arab Meta Summit 2022', href: '/events/blockchainweek2', description: 'During Day 1 of the Arab Meta Summit 2022, Omrei Abu Madi, a visionary in both the tech and tourism industries, discussed the real-world applications of the Metaverse, particularly focusing on Augmented Reality (AR).', date: 'Dec 18, 2022', datetime: '2020-12-18', }, // More posts... ] export default function Events() { return (
{posts.map((post) => ( ))}
) }