feat: minimal pwa

This commit is contained in:
2025-11-15 13:59:57 +01:00
parent bd4ada7c18
commit 3ab8cdcc37
7 changed files with 153 additions and 1 deletions

25
public/manifest.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "LinkDing",
"short_name": "LinkDing",
"description": "Your Link Collection",
"start_url": "/",
"display": "fullscreen",
"background_color": "#0f172a",
"theme_color": "#6366f1",
"orientation": "portrait-primary",
"icons": [
{
"src": "/icon-192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "/icon-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any maskable"
}
]
}