feat: enable pwa

This commit is contained in:
theborakompanioni 2025-03-29 22:37:56 +01:00
parent ec9c4dad5d
commit 47c96cd777
No known key found for this signature in database
GPG Key ID: E8070AF0053AAC0D
2 changed files with 16 additions and 0 deletions

@ -4,6 +4,7 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="manifest" href="/manifest.json" />
<title>SIGit</title>
</head>
<body>

15
public/manifest.json Normal file

@ -0,0 +1,15 @@
{
"short_name": "SIGit",
"name": "SIGit",
"icons": [
{
"src": "favicon.png",
"sizes": "16x16 24x24 32x32 48x48 64x64 72x72 96x96 128x128 256x256 512x512",
"type": "image/png"
}
],
"start_url": ".",
"display": "minimal-ui",
"theme_color": "#7d54a3",
"background_color": "#ffffff"
}