This commit is contained in:
2026-08-14 00:06:43 +02:00
parent 841a05572e
commit a9395585f8
22 changed files with 326 additions and 22 deletions
+5 -2
View File
@@ -1,6 +1,5 @@
<script lang="ts">
import "./layout.css";
import favicon from "$lib/assets/favicon.svg";
import Nav from "$lib/components/Nav.svelte";
import CommandPalette from "$lib/components/CommandPalette.svelte";
import AdminNav from "$lib/components/AdminNav.svelte";
@@ -228,7 +227,8 @@
</script>
<svelte:head>
<link rel="icon" href={favicon} />
<link rel="icon" href="/descrybe_logo.png" type="image/png" sizes="any" />
<link rel="shortcut icon" href="/descrybe_logo.png" />
{#if !isMarketingPage}
<title>Descrybe</title>
{/if}
@@ -431,6 +431,9 @@
companies={me.companies ?? (me.company ? [me.company] : [])}
activeCompanyId={me.active_company_id ?? me.company?.id ?? ""}
activeCompanyName={me.company?.name ?? ""}
homeCompanyId={me.staff_home_company_id ?? ""}
homeCompanyName={me.staff_home_company?.name ?? ""}
staffTenantActing={Boolean(me.staff_tenant_acting)}
/>
{/if}
</div>