/** * White-label brand configuration. * Edit this file to re-skin the storefront for any brand. */ const brand = { name: process.env.NEXT_PUBLIC_BRAND_NAME ?? "Carrier", legalName: "Lifecycle Innovations Limited", tagline: "Programmable connectivity, on demand.", /** One sentence. Used for and social cards. */ description: "Data that works in 200+ countries. Instant QR activation. Human support.", domain: "carrier.llc", supportUrl: "https://carrier.llc/help", supportEmail: "support@carrier.llc", supportWhatsapp: "+17864604829", /** Display name on transactional mail. */ emailFromName: "Carrier", /** * Mailbox that transactional mail is sent from. The address is this plus * `domain`, never a literal: a from-address that drifts off the brand domain * is mail the operator cannot authenticate, which is mail that bounces. */ emailFromMailbox: "hello", /** * Public origin of this storefront, no trailing slash. * * Every absolute URL the server builds — Stripe return URLs, the activation * link in an email — is derived from this. `carrier site deploy` writes the * deployed origin into NEXT_PUBLIC_APP_URL, so the literal below is only the * fallback for a scaffold that has not been deployed yet. */ appUrl: process.env.NEXT_PUBLIC_APP_URL ?? "https://carrier.llc", colors: { bg: "#FAFAF7", accent: "#FF6B35", accentDark: "#D9461C", accentLight: "#FFB088", text: "#1A1812", textSecondary: "#5C5644", }, social: { x: "@carrier_llc", instagram: "@carrier.llc", tiktok: "@carrier.llc", }, } as const; export default brand;