All files / src/lib/content locality-synonyms.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 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46                                        1x                                                  
// Locality synonyms — dual-target keyword variants that share a SERP with
// the canonical locality slug. Captured 2026-05-24 from DataForSEO SERP
// overlap analysis (keyword-cluster.md): e.g. Madhapur and HITEC City share
// 5-7 of 10 organic results, making them safe to consolidate on one page
// rather than competing internally.
//
// Applied at the marketplace template layer so seed/DB content stays the
// canonical source of truth, while page surface (title, description, FAQ)
// captures the secondary keyword.
//
// Key format: `${zoneSlug}/${localitySlug}` (matches Astro route params).
export interface LocalitySynonym {
	// Display alias shown in title/H1 ("Madhapur & HITEC City")
	alsoKnownAs: string;
	// Why these targets share — used as the answer to "is X same as Y" FAQ
	relationNote: string;
	// Extra FAQ pairs to merge into the locality FAQ block
	extraFaqs: { question: string; answer: string }[];
}
 
export const LOCALITY_SYNONYMS: Record<string, LocalitySynonym> = {
	"west/madhapur": {
		alsoKnownAs: "HITEC City",
		relationNote:
			"HITEC City is the IT business district adjoining Madhapur — most apartments tagged 'HITEC City' on listing sites have a Madhapur PIN code (500081 or 500049). Designers serving Madhapur cover the entire HITEC City catchment including Cyber Towers, Mindspace, and Inorbit Mall surroundings.",
		extraFaqs: [
			{
				question:
					"Is HITEC City the same as Madhapur for interior design purposes?",
				answer:
					"HITEC City is the IT business hub adjoining Madhapur — most residential addresses tagged 'HITEC City' on real-estate listings actually carry Madhapur PIN codes (500081, 500049). Interior designers serving Madhapur cover the entire HITEC City catchment including Cyber Towers, Mindspace, Raheja Mindspace, and the Inorbit Mall residential clusters.",
			},
			{
				question: "How much does a 2BHK interior cost in HITEC City?",
				answer:
					"2BHK interior packages in HITEC City and Madhapur typically run ₹5–₹9 lakh — about 10–15% above the Hyderabad city median because of premium gated-community apartment stock (Raheja Mindspace, My Home Jewel, Aparna Lake Breeze) and IT-professional finish expectations. Use the cost calculator for a finish-tier-specific estimate.",
			},
			{
				question: "Which apartment complexes in HITEC City do you serve?",
				answer:
					"Our network covers all major HITEC City and Madhapur projects — Raheja Mindspace, Cyber Towers, Inorbit Mall residential clusters, Aparna Lake Breeze, My Home Jewel, Lansum Eden Gardens, Pranay Crystal, and SMR Vinay Iconia among others. Designers visit your specific flat to measure and quote.",
			},
		],
	},
};