export const slugify = (text: string) => { return text.toLowerCase().replace(/\s+/g, '-') }