export const slugify = (value: string): string => value .toLowerCase() .normalize("NFD") .replace(/[^\w\s-]/g, "") .trim() .replace(/\s+/g, "-") .replace(/-+/g, "-");