This commit is contained in:
2024-11-10 07:41:27 +02:00
commit aa8f7ffa75
81 changed files with 12142 additions and 0 deletions

26
public/manifest.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "My React App",
"short_name": "ReactApp",
"start_url": "/",
"display": "standalone",
"background_color": "#ffffff",
"description": "My awesome React app!",
"theme_color": "#ffffff",
"icons": [
{
"src": "/apple-touch-icon.png",
"sizes": "144x144",
"type": "image/png"
},
{
"src": "/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}