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 47 48 49 50 51 52 53 54 | 4x | /**
* Single source of truth for Interioring's brand identity and NAP data.
*
* NAP = Name, Address, Phone — the three fields Google's local-SEO algorithm
* uses to verify business consistency across the web (GBP, schema.org,
* footer, WhatsApp CTAs). All consumers MUST import from here; never hardcode.
*
* All fields below — NAP contact, address, and geo — are confirmed production
* values.
*/
export const BRAND = {
name: "Interioring",
legalName: "Interioring Business And Technology Solutions Private Limited",
tagline: "Find top interior professionals in India",
url: "https://interioring.com",
// Matches the Google Business Profile exactly (W14 dependency).
phone: "+919550794178",
// Separate field from phone so WhatsApp routing (T11/W16) can diverge from
// the voice number later.
whatsappNumber: "+919550794178",
email: "hi@interioring.com",
address: {
streetAddress: "A1801, Skyhigh, Jubilee Hills",
addressLocality: "Hyderabad",
addressRegion: "Telangana",
postalCode: "500033",
addressCountry: "IN",
},
geo: {
latitude: 17.431,
longitude: 78.4071,
},
priceRange: "₹₹₹", // schema.org convention for service price tier
sameAs: [
"https://www.linkedin.com/company/interioring",
"https://www.instagram.com/gointerioring",
"https://x.com/gointerioring",
"https://www.youtube.com/@Interioring",
"https://www.wikidata.org/wiki/Q139981177",
] as string[],
twitterHandle: "@gointerioring",
} as const;
export type Brand = typeof BRAND;
|