Complete the SPA-surface rebrand: SVG favicon (chicorytv-icon) served from web/public, description + theme-color meta, sidebar brand mark switched to the canonical transparent chicory-mark.svg per the design system lockup, and the Channel Builder default group ErsatzTV->ChicoryTV (tests updated). Legacy Blazor UI and backend strings intentionally untouched (product-wide rebrand = epic #59). closes #90 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
31 lines
929 B
HTML
31 lines
929 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>ChicoryTV</title>
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="description" content="ChicoryTV — IPTV channel studio" />
|
|
<meta name="theme-color" content="#12100E" />
|
|
<script>
|
|
(() => {
|
|
try {
|
|
const theme = window.localStorage.getItem('ctv-theme');
|
|
|
|
if (theme === 'cool' || theme === 'dual') {
|
|
document.documentElement.dataset.theme = theme;
|
|
} else {
|
|
document.documentElement.removeAttribute('data-theme');
|
|
}
|
|
} catch {
|
|
document.documentElement.removeAttribute('data-theme');
|
|
}
|
|
})();
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|