Adds favicon and manifest

Adds favicon and web manifest to improve the app's installability and appearance as a Progressive Web App (PWA).

Also adds `.gitignore` entries for the parser output directories.
This commit is contained in:
2025-05-21 22:53:43 +02:00
parent 52fbae23ba
commit 7479f3ec97
8 changed files with 159 additions and 0 deletions

19
public/manifest.json Normal file
View File

@ -0,0 +1,19 @@
{
"name": "LiveDash",
"short_name": "LiveDash",
"icons": [
{
"src": "/favicon.svg",
"sizes": "32x32",
"type": "image/svg+xml"
},
{
"src": "/icon-192.svg",
"sizes": "192x192",
"type": "image/svg+xml"
}
],
"theme_color": "#3b82f6",
"background_color": "#ffffff",
"display": "standalone"
}