export const slugify = text => text .replace(/\s|_|\(|\)/g, "-") .normalize("NFD").replace(/\p{Diacritic}/gu, "") .toLowerCase()