feat(pwa): installierbar als App-Icon (Manifest + Icons)
Web-App-Manifest, App-Icons (192/512 + maskable, Rennmaus-Motiv) und apple-touch-icon/theme-color in index.html → "Zum Startbildschirm hinzufügen". Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -5,6 +5,13 @@
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="description" content="Verwaltung für Rennmäuse, Würfe und Züchter" />
|
||||
<!-- PWA: als App-Icon auf dem Startbildschirm installierbar (Android/iOS). -->
|
||||
<link rel="manifest" href="/manifest.webmanifest" />
|
||||
<meta name="theme-color" content="#B97B3F" />
|
||||
<link rel="apple-touch-icon" href="/icon-192.png" />
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-mobile-web-app-title" content="Rennmäuse" />
|
||||
<!-- DESIGN (Rennmaus Filter): Hanken Grotesk als App-Schrift. -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||||
|
||||
BIN
gerbil-manager-web/public/icon-192.png
Normal file
BIN
gerbil-manager-web/public/icon-192.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.0 KiB |
BIN
gerbil-manager-web/public/icon-512.png
Normal file
BIN
gerbil-manager-web/public/icon-512.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.6 KiB |
17
gerbil-manager-web/public/manifest.webmanifest
Normal file
17
gerbil-manager-web/public/manifest.webmanifest
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "Rennmaus-Manager",
|
||||
"short_name": "Rennmäuse",
|
||||
"description": "Verwaltung für Rennmäuse, Würfe und Züchter",
|
||||
"lang": "de",
|
||||
"start_url": "/",
|
||||
"scope": "/",
|
||||
"display": "standalone",
|
||||
"orientation": "portrait",
|
||||
"background_color": "#F7EDDD",
|
||||
"theme_color": "#B97B3F",
|
||||
"icons": [
|
||||
{ "src": "/icon-192.png", "sizes": "192x192", "type": "image/png" },
|
||||
{ "src": "/icon-512.png", "sizes": "512x512", "type": "image/png" },
|
||||
{ "src": "/maskable-512.png", "sizes": "512x512", "type": "image/png", "purpose": "maskable" }
|
||||
]
|
||||
}
|
||||
BIN
gerbil-manager-web/public/maskable-512.png
Normal file
BIN
gerbil-manager-web/public/maskable-512.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.8 KiB |
Reference in New Issue
Block a user