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 55 | 1x | /**
* 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.
*
* Pending items are marked TODO below. Fill them in before going live with
* Google Business Profile (W14) and WhatsApp CTAs (W16).
*/
export const BRAND = {
name: "Interioring",
legalName: "Interioring", // TODO: update if/when incorporated (e.g. "Interioring Technologies Pvt Ltd")
tagline: "Find top interior professionals in India",
url: "https://interioring.com",
// TODO: replace placeholder with the real business phone before production.
// This number should match the Google Business Profile exactly (W14 dependency).
phone: "+91XXXXXXXXXX",
// TODO: replace placeholder. Typically the same as phone; separate field
// so WhatsApp routing (T11/W16) can diverge from the voice number later.
whatsappNumber: "+91XXXXXXXXXX",
// TODO: replace placeholder with the real support email before production.
email: "hello@interioring.com",
address: {
// TODO: replace with the actual Hyderabad office address before production.
streetAddress: "TBD — Hyderabad office address",
addressLocality: "Hyderabad",
addressRegion: "Telangana",
postalCode: "500032",
addressCountry: "IN",
},
geo: {
// Hyderabad city-center default; update to exact office coordinates once confirmed.
latitude: 17.385044,
longitude: 78.486671,
},
priceRange: "₹₹₹", // schema.org convention for service price tier
// TODO: add social profile URLs when accounts are confirmed (Instagram, LinkedIn, etc.)
sameAs: [] as string[],
// Twitter/X handle used in OG meta tags.
// TODO: update to @interioring (or the final handle) if/when the account migrates from @decorrocket.
twitterHandle: "@decorrocket",
} as const;
export type Brand = typeof BRAND;
|