export const getCompanySlug = (companyName) => { if (!companyName) return 'toko'; return companyName .toLowerCase() .replace(/[^a-z0-9]+/g, '-') // Replace spaces and special characters with hyphens .replace(/(^-|-$)/g, ''); // Remove leading/trailing hyphens };