feat: turn into a pwa

This commit is contained in:
Julien Calixte
2026-03-23 19:25:34 +01:00
parent 1afe86b79a
commit da1f3566c2
6 changed files with 99 additions and 0 deletions

24
app/static/manifest.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "Apoena Transcript",
"short_name": "Apoena",
"description": "Privacy-first, in-browser speech-to-text transcription",
"start_url": "/",
"display": "standalone",
"orientation": "portrait-primary",
"theme_color": "#7c6af7",
"background_color": "#0f0f13",
"icons": [
{
"src": "/icon.svg",
"sizes": "any",
"type": "image/svg+xml",
"purpose": "any"
},
{
"src": "/icon-maskable.svg",
"sizes": "any",
"type": "image/svg+xml",
"purpose": "maskable"
}
]
}