added basic pwa support and new images

This commit is contained in:
Luca 2024-03-29 17:23:07 +01:00
parent d51e47c549
commit ae75a8880a
15 changed files with 166 additions and 13 deletions

21
src/pwa.webmanifest Normal file
View file

@ -0,0 +1,21 @@
{
"name": "Luca Junge PWA",
"short_name": "Luca Junge PWA",
"description": "The website of Luca Junge as a Progressive Web App",
"icons": [
{
"src": "/assets/images/logo.png",
"sizes": "32x32",
"type": "image/png"
},
{
"src": "/assets/images/logo.png",
"sizes": "512x512",
"type": "image/png"
}
],
"start_url": "/",
"display": "standalone",
"theme_color": "#4C0026",
"background_color": "#4C0026"
}