// Import the CSS file import './styles.css'; // Initialize app document.addEventListener('DOMContentLoaded', () => { // Setup download button confirmation const downloadBtn = document.querySelector('#download-btn') as HTMLAnchorElement; if (downloadBtn) { downloadBtn.addEventListener('click', (e) => { // Prevent the default link behavior e.preventDefault(); // Show confirmation dialog if (confirm('Deseja baixar o Aplicativo Jadlog?')) { // If confirmed, trigger the download window.location.href = downloadBtn.href; } }); // VocĂȘ pode definir dinamicamente a URL do APK aqui se preferir // downloadBtn.href = 'https://sua-url-real-do-apk.com/download/app.apk'; } console.log('App initialized'); });