Files
Messenger/web/index.html
benya 29a612dffa
Some checks failed
Android CI / android (push) Failing after 4m20s
Android Release / release (push) Failing after 4m26s
CI / test (push) Failing after 2m22s
feat: add branded app and web icons
Add adaptive and legacy launcher icons for Android.

Replace the default notification icon with a branded monochrome asset.

Add favicon, touch icons, and a web app manifest for the web client.
2026-04-05 15:36:19 +03:00

19 lines
721 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#3390ec" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="manifest" href="/site.webmanifest" />
<title>Benya Messenger</title>
</head>
<body class="bg-bg text-text">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>