Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 4x 4x | // Shared constants used across portal components
/** Project-level budget range options */
export const PROJECT_BUDGET_OPTIONS = [
{ value: "under_1l", label: "Under ₹1L" },
{ value: "1_3l", label: "₹1-3L" },
{ value: "3_5l", label: "₹3-5L" },
{ value: "5_10l", label: "₹5-10L" },
{ value: "above_10l", label: "Above ₹10L" },
] as const;
/** Room-level budget spent options (per-room, smaller scale) */
export const ROOM_BUDGET_OPTIONS = [
{ value: "under_50k", label: "Under ₹50K" },
{ value: "50k_1l", label: "₹50K - 1L" },
{ value: "1l_2l", label: "₹1-2L" },
{ value: "2l_5l", label: "₹2-5L" },
{ value: "above_5l", label: "Above ₹5L" },
] as const;
|