HEX
Server: nginx/1.18.0
System: Linux vcwordpress 5.15.0-174-generic #184-Ubuntu SMP Fri Mar 13 18:41:50 UTC 2026 x86_64
User: root (0)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/igsms.viitorcloud.co/igsmsportal/constants.tsx
import React from 'react';

export const DEPARTMENTS = [
  'Panchayats, Rural Housing and Rural Development',
  'Health and Family Welfare',
  'Education',
  'Revenue',
  'Urban Development and Urban Housing',
  'Home',
  'Agriculture, Farmers Welfare and Co-operation',
  'Water Resources',
  'Roads and Buildings'
];

export const DISTRICTS = [
  'Ahmedabad', 'Gandhinagar', 'Rajkot', 'Surat', 'Vadodara', 'Bhavnagar', 'Jamnagar', 'Junagadh'
];

export const STATUS_COLORS: Record<string, string> = {
  PENDING: 'bg-amber-100 text-amber-700 ring-1 ring-amber-200',
  ASSIGNED: 'bg-blue-100 text-blue-700 ring-1 ring-blue-200',
  IN_PROGRESS: 'bg-indigo-100 text-indigo-700 ring-1 ring-indigo-200',
  RESOLVED: 'bg-emerald-100 text-emerald-700 ring-1 ring-emerald-200',
  CLOSED: 'bg-slate-100 text-slate-700 ring-1 ring-slate-200',
  ESCALATED: 'bg-rose-100 text-rose-700 ring-1 ring-rose-200',
};

export const PRIORITY_COLORS: Record<string, string> = {
  LOW: 'bg-slate-100 text-slate-500',
  MEDIUM: 'bg-sky-100 text-sky-600',
  HIGH: 'bg-orange-100 text-orange-600',
  URGENT: 'bg-red-100 text-red-600',
};