1
0
Fork 0
forked from Mirrors/gomuks

web/index: add PWA manifest

This commit is contained in:
Tulir Asokan 2024-12-15 14:58:10 +02:00
parent 43b454eeed
commit 9a125f4240
2 changed files with 18 additions and 0 deletions

View file

@ -3,6 +3,7 @@
<head>
<meta charset="UTF-8"/>
<link rel="icon" type="image/png" href="gomuks.png"/>
<link rel="manifest" href="manifest.json"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, interactive-widget=resizes-content"/>
<title>gomuks web</title>
<!-- etag placeholder -->

17
web/public/manifest.json Normal file
View file

@ -0,0 +1,17 @@
{
"name": "gomuks web",
"description": "A Matrix client written in Go",
"categories": ["social", "productivity"],
"icons": [{
"src": "gomuks.png",
"sizes": "883x883",
"type": "image/png"
}],
"protocol_handlers": [{
"protocol": "matrix",
"url": "#/uri/%s"
}],
"start_url": ".",
"display": "standalone",
"theme_color": "#00c853"
}