A Progressive Web App that mimics Apple Pay for prank donations.
- 🎭 Apple Pay-like UI with NFC animation
- 💰 Donation tracking with localStorage
- 🔊 Sound effects and haptic feedback
- 📱 PWA support (installable on mobile)
- 🌙 Dark theme with sparkle effects
-
Create a GitHub repository
git init git add . git commit -m "Initial donation app" git branch -M main git remote add origin https://github.com/yourusername/donation-app.git git push -u origin main
-
Enable GitHub Pages
- Go to repository Settings → Pages
- Source: Deploy from a branch
- Branch: main
- Folder: / (root)
-
Access your PWA
- Your app will be available at:
https://yourusername.github.io/donation-app - HTTPS is automatically provided by GitHub Pages
- PWA install will work properly on Android Chrome
- Your app will be available at:
python3 -m http.server 8000
# Open http://localhost:8000index.html- Main appmanifest.json- PWA configurationsw.js- Service worker for offline supportapplepay.mp3- Sound effecttop.png- Header backgroundicon-*.png- App icons
- ✅ Manifest with proper icons
- ✅ Service worker for offline caching
- ✅ Standalone display mode
- ✅ Installable on mobile devices
- ✅ Works offline after installation