All files / src/lib/content costs.ts

100% Statements 1/1
100% Branches 0/0
100% Functions 0/0
100% Lines 1/1

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 21 22                              2x            
// 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;
	/** Numeric INR bounds powering the PriceSpecification JSON-LD. Keep in sync with `range`. */
	minPrice: number;
	maxPrice: number;
}
 
export const HYDERABAD_DEFAULT_COSTS: CostRow[] = [
	{ type: "1BHK", range: "₹2L–₹4L", timeline: "4–8 weeks", minPrice: 200000, maxPrice: 400000 },
	{ type: "2BHK", range: "₹4L–₹8L", timeline: "8–12 weeks", minPrice: 400000, maxPrice: 800000 },
	{ type: "3BHK", range: "₹8L–₹15L", timeline: "3–5 months", minPrice: 800000, maxPrice: 1500000 },
	{ type: "4BHK", range: "₹15L–₹30L+", timeline: "4–6 months", minPrice: 1500000, maxPrice: 3000000 },
];