export const ADMIN_LOCAL_USER = "admin";
export const ADMIN_LOCAL_PASS = "admin001#";
export const ADMIN_SESSION_KEY = "tirs_admin_session";

export const CRIME_CATEGORIES = [
  { value: "hijacking", label: "Hijacking" },
  { value: "murder", label: "Murder" },
  { value: "armed_robbery", label: "Armed Robbery" },
  { value: "robbery", label: "Robbery" },
  { value: "burglary", label: "Burglary" },
  { value: "assault", label: "Assault (GBH/Common)" },
  { value: "rape", label: "Rape / Sexual Offence" },
  { value: "kidnapping", label: "Kidnapping" },
  { value: "theft", label: "Theft" },
  { value: "fraud", label: "Fraud" },
  { value: "drug_offence", label: "Drug-related Offence" },
  { value: "gang_activity", label: "Gang Activity" },
  { value: "human_trafficking", label: "Human Trafficking" },
  { value: "firearms_offence", label: "Firearms Offence" },
  { value: "domestic_violence", label: "Domestic Violence" },
  { value: "vehicle_theft", label: "Vehicle Theft" },
  { value: "housebreaking", label: "Housebreaking" },
  { value: "other", label: "Other" },
] as const;

export const RANKS = [
  "Constable","Sergeant","Warrant Officer","Captain","Lieutenant Colonel",
  "Colonel","Brigadier","Major General","Lieutenant General","General",
] as const;
