blob: 49b37eba35d056e976cb0db68c3b3945ce7b1bde [file]
export default async function getEvents(locale) {
try {
const result = await fetch(`/fetch/event/${locale}.json`);
const events = await result.json();
return events;
} catch (e) {}
return [];
}