) : null}
-
+
);
}
diff --git a/web/src/app/(app)/dashboard/page.tsx b/web/src/app/(app)/dashboard/page.tsx
index f246c1f..3e69883 100644
--- a/web/src/app/(app)/dashboard/page.tsx
+++ b/web/src/app/(app)/dashboard/page.tsx
@@ -5,6 +5,7 @@ import { useRouter, useSearchParams } from "next/navigation";
import { Suspense, useEffect, useState } from "react";
import { AppShell } from "@/components/AppShell";
import { CreateNoteModal } from "@/components/CreateNoteModal";
+import { Button, Card } from "@/components/ui/Primitives";
import { listNoteSummaries, listWorkspaceSummaries, seedOnboardingWorkspace } from "@/lib/notes-client";
import { listApprovalQueue } from "@/lib/review-client";
import { listSavedViews, type SavedView } from "@/lib/saved-views-client";
@@ -146,9 +147,9 @@ function DashboardContent() {
title="Dashboard"
description="Operational entry point for recent notes, active workspaces, and agent-relevant follow-ups."
actions={
-
}
>
{summaryCards.map((card) => (
-
-
{card.label}
-
{card.value}
-
+
+
+
{card.label}
+
{card.value}
+
+
))}
@@ -172,10 +175,10 @@ function DashboardContent() {
Seeds a "Getting started" workspace with sample notes and one agent item in the review queue (backend flag{" "}
onboarding.seed_enabled).