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 | 1x | // Default interior-design cost rows used by <CostBreakdown> on city/zone/BHK
// pages and the cost calculator. Numbers are Hyderabad-market means as of
// 2026-04 (sourced from /interiors/hyderabad meta + zone tier ranges).
//
// Update these here once and every page that renders the table updates.
export interface CostRow {
type: string;
range: string;
timeline: string;
}
export const HYDERABAD_DEFAULT_COSTS: CostRow[] = [
{ type: "1BHK", range: "₹2L–₹5L", timeline: "4–8 weeks" },
{ type: "2BHK", range: "₹4L–₹8L", timeline: "6–10 weeks" },
{ type: "3BHK", range: "₹6L–₹12L", timeline: "8–12 weeks" },
{ type: "4BHK", range: "₹10L–₹20L", timeline: "10–16 weeks" },
];
|