export function generateSlug(text: string): string { return text .toLowerCase() .trim() .replace(/[^\w\s-]/g, "") // Remove special characters .replace(/\s+/g, "-") // Replace spaces with hyphens .replace(/-+/g, "-"); // Remove consecutive hyphens }