export function slugify(text: string): string { return text.toLowerCase().replace(/[^\w\s-]/g, '').replace(/[\s/]+/g, '-'); }