๐Ÿ“ฑ PWA Generator

Create apps that work like native iOS apps

โœ… Your PWA is ready! Follow the instructions below to add it to your home screen.
๐Ÿ“ฑ
Click to upload icon
PNG, JPG, or SVG format

Your App Preview

App Icon

๐Ÿ“‹ How to Add to Home Screen (iOS)

  1. Open Safari on your iPhone/iPad
  2. Navigate to the URL that was generated
  3. Tap the Share button (โคด๏ธ)
  4. Scroll down and tap "Add to Home Screen"
  5. Customize the name if needed and tap "Add"
  6. The app will appear on your home screen like a native app!

๐Ÿ’ก Tip: The app will open in full-screen mode without Safari's address bar, making it feel like a native iOS app.

`; } function showCustomAlert(message) { const alertDiv = document.createElement('div'); alertDiv.style.cssText = ` position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background: rgba(255, 255, 255, 0.95); color: #333; padding: 20px 30px; border-radius: 12px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); z-index: 1000; backdrop-filter: blur(10px); text-align: center; max-width: 300px; `; alertDiv.innerHTML = `

${message}

`; document.body.appendChild(alertDiv); setTimeout(() => { if (alertDiv.parentElement) { alertDiv.remove(); } }, 3000); }