Replace the ⚓ emoji with a real logo image used as the in-app brand mark and the favicon. Default bundled public/logo.svg is the HangmanLab mark recolored to the Foundry-Deck ember (#ff6a1a). Override at deploy time via HARBORFORGE_LOGO_URL (injected into runtime-config.js; getLogoUrl() + favicon swap), no rebuild needed. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
24 lines
852 B
HTML
24 lines
852 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link id="hf-favicon" rel="icon" type="image/svg+xml" href="/logo.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>HarborForge</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<!-- Runtime config injected by the container entrypoint (deploy-time
|
|
HARBORFORGE_OIDC_ONLY). Absent in dev → app falls back to /auth/config. -->
|
|
<script src="/runtime-config.js"></script>
|
|
<script>
|
|
// Optional deploy-time branding override (HARBORFORGE_LOGO_URL).
|
|
try {
|
|
var u = window.__HF_RUNTIME__ && window.__HF_RUNTIME__.logo_url;
|
|
if (u) document.getElementById('hf-favicon').href = u;
|
|
} catch (e) {}
|
|
</script>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|