Install on your phone โ works on Android & iOS
No app store needed ยท Works offline ยท Free
Add this block inside the <head> section of your landing page, calculator, and dashboard HTML files:
<!-- โโโ SCOREMYBIZ PWA โ ADD TO ALL HTML FILES โโโ --> <!-- PWA Manifest --> <link rel="manifest" href="manifest.json"> <!-- Theme color (Android status bar) --> <meta name="theme-color" content="#0055FF"> <!-- iOS / Apple specific --> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> <meta name="apple-mobile-web-app-title" content="ScoreMyBiz"> <link rel="apple-touch-icon" href="icon-192.png"> <!-- Service Worker Registration --> <script> if ('serviceWorker' in navigator) { window.addEventListener('load', () => { navigator.serviceWorker.register('/sw.js') .then(reg => console.log('SW registered')) .catch(err => console.log('SW failed:', err)); }); } </script> <!-- โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ -->
After adding this code and uploading sw.js, manifest.json, and all icon-*.png files to your server โ ScoreMyBiz becomes a fully installable PWA app.