mirror of
https://dev.azure.com/globalhealthx/EMR/_git/helix-engage
synced 2026-04-11 18:28:15 +00:00
- Add helix.svg and PNG favicon (generated via nano-banana) - Update page title to "Helix Engage" with proper meta tags - Make seed scripts configurable via SEED_GQL/SEED_ORIGIN env vars - Support remote workspace member IDs in seed-data.ts - Dynamic doctor-to-clinic linking in seed-new-entities.ts (fetch IDs from platform) - Remove deprecated branchClinic field from seed data - Fix TypeScript errors: callNotes null vs undefined, Lead type casting Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
31 lines
1.4 KiB
HTML
31 lines
1.4 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/png" href="/favicon-32.png" />
|
|
<link rel="apple-touch-icon" href="/helix-512.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="description" content="Helix Engage — Hospital Lead Management & Call Center" />
|
|
<meta name="theme-color" content="#2563eb" />
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,400..700;1,14..32,400..700&display=swap" rel="stylesheet" />
|
|
|
|
<title>Helix Engage</title>
|
|
</head>
|
|
|
|
<body class="size-full bg-primary antialiased">
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
<script>
|
|
// On page load or when changing themes, best to add inline in `head` to avoid FOUC
|
|
if (localStorage.theme === "dark" || (!("theme" in localStorage) && window.matchMedia("(prefers-color-scheme: dark)").matches)) {
|
|
document.documentElement.classList.add("dark-mode");
|
|
} else {
|
|
document.documentElement.classList.remove("dark-mode");
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|