This commit is contained in:
2025-12-25 11:01:11 +00:00
parent ca9c5498c4
commit 9ea4b41340
23 changed files with 531 additions and 48 deletions

View File

@@ -0,0 +1,40 @@
# PWA Assets
Generated by PWA Icon Generator
## Contents
- `/icons/` - All PWA icons in various sizes
- `/splash/` - iOS splash screens (if generated)
- `manifest.json` - Web app manifest file
- `meta-tags.html` - HTML meta tags to include in your index.html
- `favicon.png` - Favicon for your site
## Installation
1. Copy the `icons` folder to your project's public directory
2. Copy the `splash` folder to your project's public directory (if using splash screens)
3. Copy `manifest.json` to your project's root/public directory
4. Add the contents of `meta-tags.html` to your `index.html` `<head>` section
## Icon Sizes Included
- 16x16
- 32x32
- 48x48
- 64x64
- 96x96
- 128x128
- 144x144
- 152x152
- 180x180
- 192x192
- 384x384
- 512x512
- 192x192 (maskable)
- 512x512 (maskable)
---
Generated with PWA Icon Generator

BIN
Bootstrap_new/images/new/favicon.png Executable file → Normal file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 507 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@@ -0,0 +1,41 @@
{
"name": "My PWA App",
"short_name": "App",
"description": "A Progressive Web App",
"start_url": "/",
"display": "standalone",
"background_color": "#ffffff",
"theme_color": "#3b82f6",
"icons": [
{
"src": "/icons/icon-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any"
},
{
"src": "/icons/icon-384x384.png",
"sizes": "384x384",
"type": "image/png",
"purpose": "any"
},
{
"src": "/icons/icon-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any"
},
{
"src": "/icons/icon-192x192-maskable.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/icons/icon-512x512-maskable.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
]
}

View File

@@ -0,0 +1,10 @@
<!-- PWA Meta Tags -->
<link rel="icon" href="/favicon.ico" sizes="48x48">
<link rel="icon" href="/icons/icon-192x192.png" type="image/png" sizes="192x192">
<link rel="icon" href="/icons/icon-512x512.png" type="image/png" sizes="512x512">
<link rel="apple-touch-icon" href="/icons/icon-180x180.png">
<link rel="manifest" href="/manifest.json">
<meta name="theme-color" content="#3b82f6">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<meta name="apple-mobile-web-app-title" content="My PWA App">