// Obfuscated WhatsApp function function openWhatsApp(source) { // Build phone number to avoid scrapers const phoneCode = '1718'; const phoneEnd = '2135266'; const phone = phoneCode + phoneEnd;
// Different messages based on source let message = 'Hi Daniel! I saw your Afya investor page.'; if (source === 'hero') { message = 'Hi Daniel! I saw your Afya investor briefing.'; } else if (source === 'contact') { message = 'Hi Daniel! I saw your Afya investor page and would like to connect.'; }
const whatsappUrl = `https://wa.me/${phone}?text=${encodeURIComponent(message)}`; window.open(whatsappUrl, '_blank'); }
// No need for mobile-specific text changes anymore