- Replace text-based branding with logo icon in header - Update README.md with full DockMV logo image - Add favicon and logo-icon assets - Add dockmv-icon to assets directory - Update styles for logo display - Rebuild web UI distribution Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
15 lines
408 B
HTML
15 lines
408 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="color-scheme" content="dark light" />
|
|
<link rel="icon" type="image/png" href="/favicon.png" />
|
|
<title>DockMV</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|