mirror of
https://github.com/spartanz51/tutabridge.git
synced 2026-06-24 10:54:32 +02:00
Tuta asked (discussion #9960) to stop using their logo so the project is not mistaken for an official one. Swap it everywhere for a neutral bridge icon. - App header and favicon now use the bridge logo - Regenerated the full Tauri desktop icon set (sizes, .icns, .ico) - Window title set to TutaBridge - Removed tuta-logo.svg and the default Vite favicon - Added logo.png master at the repo root
14 lines
358 B
HTML
14 lines
358 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" />
|
|
<title>TutaBridge</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|