Valide
40
Bootstrap_new/images/new/README.md
Normal 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
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 1.7 KiB |
BIN
Bootstrap_new/images/new/icons/icon-128x128.png
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
BIN
Bootstrap_new/images/new/icons/icon-144x144.png
Normal file
|
After Width: | Height: | Size: 5.3 KiB |
BIN
Bootstrap_new/images/new/icons/icon-152x152.png
Normal file
|
After Width: | Height: | Size: 5.8 KiB |
BIN
Bootstrap_new/images/new/icons/icon-16x16.png
Normal file
|
After Width: | Height: | Size: 507 B |
BIN
Bootstrap_new/images/new/icons/icon-180x180.png
Normal file
|
After Width: | Height: | Size: 7.0 KiB |
BIN
Bootstrap_new/images/new/icons/icon-192x192-maskable.png
Normal file
|
After Width: | Height: | Size: 7.7 KiB |
BIN
Bootstrap_new/images/new/icons/icon-192x192.png
Normal file
|
After Width: | Height: | Size: 7.7 KiB |
BIN
Bootstrap_new/images/new/icons/icon-32x32.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
Bootstrap_new/images/new/icons/icon-384x384.png
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
Bootstrap_new/images/new/icons/icon-48x48.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
Bootstrap_new/images/new/icons/icon-512x512-maskable.png
Normal file
|
After Width: | Height: | Size: 33 KiB |
BIN
Bootstrap_new/images/new/icons/icon-512x512.png
Normal file
|
After Width: | Height: | Size: 33 KiB |
BIN
Bootstrap_new/images/new/icons/icon-64x64.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
Bootstrap_new/images/new/icons/icon-96x96.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
41
Bootstrap_new/images/new/manifest.json
Normal 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"
|
||||
}
|
||||
]
|
||||
}
|
||||
10
Bootstrap_new/images/new/meta-tags.html
Normal 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">
|
||||