Proper favicon.ico with 16/32/64px PNG variants for cross-browser coverage. Apple-touch-icon fallback. Adds CORROSION MANAGEMENT wordmark PNG for text-based branding contexts. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
665 B
HTML
18 lines
665 B
HTML
<!doctype html>
|
|
<html lang="en" class="dark">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" href="/favicon.ico" sizes="any" />
|
|
<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="/favicon.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="theme-color" content="#0a0a0a" />
|
|
<title>Corrosion Management</title>
|
|
</head>
|
|
<body class="bg-neutral-950">
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|