index.html: add png/ico/apple-touch favicon links, og:image, and brand theme-color (#7B6BE3) so all icon surfaces use the H glass mark. Hide unused auth UI: - profile page: drop PasskeyCard + TwoFACard - system-settings/auth: drop Passkey Authentication section These features aren't part of the Heicode platform flow (auth is delegated to the identity service / SSO); leaving them in the UI confuses tenants. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
29 lines
938 B
HTML
Vendored
29 lines
938 B
HTML
Vendored
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/heicode-logo.svg" />
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/logo.png" />
|
|
<link rel="shortcut icon" href="/favicon.ico" />
|
|
<link rel="apple-touch-icon" href="/logo.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<!-- Primary Meta Tags -->
|
|
<title>Heicode Manager</title>
|
|
<meta name="title" content="Heicode Manager" />
|
|
<meta
|
|
name="description"
|
|
content="Heicode Manager — multi-tenant control plane for Agnet deployments, events and audit."
|
|
/>
|
|
<meta property="og:title" content="Heicode Manager" />
|
|
<meta property="og:image" content="/logo.png" />
|
|
<meta property="og:type" content="website" />
|
|
|
|
<meta name="theme-color" content="#7B6BE3" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
</body>
|
|
</html>
|