29 lines
1.0 KiB
TypeScript
29 lines
1.0 KiB
TypeScript
export const siteContent = {
|
|
brand: {
|
|
name: "Nearle",
|
|
},
|
|
|
|
metrics: {
|
|
// Only keep values that are verified and consistent.
|
|
// TODO: Confirm all numeric metrics with the business team before adding them back.
|
|
// Removed from UI: verifiedStores, happyCustomers, customerRating (unverifiable / conflicting)
|
|
serviceRadius: "2km", // product specification — not a business metric
|
|
},
|
|
|
|
app: {
|
|
// Candidate iOS: https://apps.apple.com/us/app/nearle/id1596895375
|
|
// Candidate Android: https://play.google.com/store/apps/details?id=com.nearle.gear
|
|
androidUrl: "https://play.google.com/store/apps/details?id=com.nearle.gear",
|
|
iosUrl: "https://apps.apple.com/us/app/nearle/id1596895375",
|
|
status: "coming-soon",
|
|
},
|
|
|
|
contact: {
|
|
// TODO: Confirm these details with the business team before launch.
|
|
// These values are sourced from the existing codebase — not invented.
|
|
phone: "+91 80 4912 3456",
|
|
whatsappUrl: "https://wa.me/919092068666",
|
|
email: "support@nearle.in",
|
|
},
|
|
} as const;
|