Drop the leftover Vite default and point the favicon + apple-touch-icon at a copy of the existing muli-logo.png served from /public. Also trim the page title to "Mulita" and add a dark theme-color meta tag so mobile browsers paint the chrome to match the app. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
15 lines
472 B
HTML
15 lines
472 B
HTML
<!doctype html>
|
|
<html lang="en" class="dark">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/png" href="/favicon.png" />
|
|
<link rel="apple-touch-icon" href="/favicon.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="theme-color" content="#0f0f0f" />
|
|
<title>Mulita</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html> |