Merge pull request #27 from offendingcommit/feat/dream-viewer

feat(web): add dream output viewer
This commit is contained in:
Offending Commit
2026-05-28 14:25:45 -05:00
committed by GitHub
16 changed files with 1288 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ const SECTION_LABELS: Record<string, string> = {
peers: "Peers",
sessions: "Sessions",
conclusions: "Conclusions",
dreams: "Dreams",
webhooks: "Webhooks",
chat: "Chat",
};

View File

@@ -14,6 +14,7 @@ import {
Lightbulb,
MessageSquare,
Moon,
MoonStar,
Settings,
Sun,
Users,
@@ -39,6 +40,7 @@ const WORKSPACE_SECTIONS = [
{ label: "Peers", icon: Users, section: "peers" },
{ label: "Sessions", icon: MessageSquare, section: "sessions" },
{ label: "Conclusions", icon: Lightbulb, section: "conclusions" },
{ label: "Dreams", icon: MoonStar, section: "dreams" },
{ label: "Webhooks", icon: Webhook, section: "webhooks" },
] as const;