5511ef4110
Public, unauthenticated pages required for A2P 10DLC campaign verification: - /sms-opt-in: web opt-in form (phone field, un-pre-checked consent checkbox, message description, frequency, msg&data-rates + HELP/STOP disclaimers, links to Terms & Privacy, 'Yes, sign me up!' submit). - /privacy: Privacy Policy with the mandatory SMS clauses (no third-party/affiliate sharing of mobile numbers or SMS consent, message frequency, rates disclosure). - /terms: Terms of Service with an SMS program-terms section. Business details centralized in legal-config.ts (replace SMS_SENDER with the live Twilio number once approved).
12 lines
602 B
TypeScript
12 lines
602 B
TypeScript
/**
|
|
* Shared business details for the public compliance pages (SMS opt-in, Privacy,
|
|
* Terms). Edit these in one place to keep every page and disclosure consistent.
|
|
* Replace SMS_SENDER with your live Twilio number once the campaign is approved.
|
|
*/
|
|
export const COMPANY = "LynkedUp Pro";
|
|
export const SUPPORT_EMAIL = "support@lynkeduppro.com";
|
|
export const PRIVACY_EMAIL = "privacy@lynkeduppro.com";
|
|
export const SMS_SENDER = "(555) 010-0100"; // TODO: replace with your Twilio A2P number
|
|
export const SITE_URL = "https://lynkeduppro-crmnew.vercel.app";
|
|
export const LAST_UPDATED = "July 13, 2026";
|