PWA stuff

This commit is contained in:
zmeyer44 2023-10-14 23:04:21 -04:00
parent cad7b78798
commit 47ca1f482a
2 changed files with 32 additions and 1 deletions

View File

@ -47,7 +47,7 @@ export const metadata: Metadata = {
telephone: false, telephone: false,
}, },
themeColor: { themeColor: {
color: "#000000", color: "#FFFFFF",
}, },
}; };

31
public/manifest.json Normal file
View File

@ -0,0 +1,31 @@
{
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone",
"scope": "/",
"start_url": "/app",
"name": "Flockstr",
"short_name": "Flockstr",
"icons": [
{
"src": "/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/icon-256x256.png",
"sizes": "256x256",
"type": "image/png"
},
{
"src": "/icon-384x384.png",
"sizes": "384x384",
"type": "image/png"
},
{
"src": "/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}