feat: build dashboard design system

This commit is contained in:
vince 2026-06-18 18:27:54 +02:00
parent 171cb05305
commit fb266cf17a
23 changed files with 1449 additions and 84 deletions

View file

@ -0,0 +1,17 @@
<script lang="ts">
import type { UiServiceGroup } from "../types";
import Panel from "./Panel.svelte";
import ServiceRow from "./ServiceRow.svelte";
import StatusStrip from "./StatusStrip.svelte";
let { group }: { group: UiServiceGroup } = $props();
</script>
<Panel title={group.title}>
{#if group.summary?.length}
<StatusStrip items={group.summary} compact />
{/if}
{#each group.services as service (service.id)}
<ServiceRow {service} />
{/each}
</Panel>