import { CheckIcon } from '@heroicons/react/20/solid' const events = [ { name: 'VerseFest 2024', date: 'Nov 21-24', location: 'OurWorld Verse', languages: ['ENG', 'ARABIC'], signupLink: 'https://ourverse.tf/events/versefest.html', }, { name: 'Freelance Fest 2024', date: 'Oct 23-24', location: 'OurWorld Verse', languages: ['ARABIC'], signupLink: 'https://ourverse.tf/events/versefest.html', }, // More events can be added here... ] // A function to return small flag icons for the specified languages const languageIcons = { ENG: '🇬🇧', // English flag icon (Union Jack) ARABIC: '🇦🇪', // Arabic flag icon (UAE as an example) } function classNames(...classes) { return classes.filter(Boolean).join(' ') } export default function Eventpage1() { return (
Get Involved
Join the latest events from OurVerse community.
Event | Date | Location | Language | Sign Up |
---|---|---|---|---|
{event.name} | {event.date} | {event.location} | {event.languages.map((lang) => ( {languageIcons[lang]} ))} | Sign Up, {event.name} |