tbk 13044d6b39 feat: enable pwa ()
This PR addresses 2 of 3 tasks from .
- [x] It should be possible to download SIGit as a PWA on a device homescreen.
- [x] This app should self-update

Co-authored-by: theborakompanioni <theborakompanioni+github@gmail.com>
Co-authored-by: b <b@4j.cx>
Reviewed-on: 
Reviewed-by: enes <enes@noreply.git.nostrdev.com>
Co-authored-by: tbk <theborakompanioni+nostrdev@gmail.com>
Co-committed-by: tbk <theborakompanioni+nostrdev@gmail.com>
2025-04-03 11:40:04 +00:00

16 lines
456 B
HTML

<!doctype html>
<html lang="en">
<head>
<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="/app.webmanifest" />
<title>SIGit</title>
</head>
<body>
<div id="root"></div>
<script src="/opentimestamps.min.js"></script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>