Replace placeholder favicon.svg with the designed Fabric icon as a PNG favicon set (16/32/256), apple-touch-icon (180), icon-512; document title -> 'Fabric'; theme-color black to match the icon. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
18 lines
657 B
HTML
18 lines
657 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32.png" />
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16.png" />
|
|
<link rel="icon" type="image/png" sizes="256x256" href="/favicon.png" />
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="theme-color" content="#000000" />
|
|
<title>Fabric</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|