diff --git a/web-ui/src/components/app-shell.tsx b/web-ui/src/components/app-shell.tsx
index c8422b9..d2b2d4a 100644
--- a/web-ui/src/components/app-shell.tsx
+++ b/web-ui/src/components/app-shell.tsx
@@ -3,6 +3,29 @@
import type { ReactNode } from "react";
import Link from "next/link";
import { usePathname } from "next/navigation";
+import { ChevronDown } from "lucide-react";
+
+import {
+ DropdownMenu,
+ DropdownMenuContent,
+ DropdownMenuItem,
+ DropdownMenuLabel,
+ DropdownMenuSeparator,
+ DropdownMenuTrigger,
+} from "@/components/ui/dropdown-menu";
+
+type AgentBoard = {
+ prefix: string;
+ label: string;
+ hint: string;
+};
+
+const AGENT_BOARDS: AgentBoard[] = [
+ { prefix: "CMP", label: "רישוי ובניה", hint: "תיקי 1xxx" },
+ { prefix: "CMPA", label: "היטלי השבחה", hint: "תיקי 8xxx / 9xxx" },
+];
+
+const PAPERCLIP_BASE = "https://pc.nautilus.marcusgroup.org";
/**
* Ezer Mishpati navigation shell.
@@ -91,17 +114,49 @@ export function AppShell({ children }: { children: ReactNode }) {
})}
-
-
- ניהול סוכנים
-
- CMPA
-
+
+
+
+ ניהול סוכנים
+
+
+
+
+
+
+ פתח דאשבורד Paperclip
+
+
+ {AGENT_BOARDS.map((board) => (
+
+
+ {board.label}
+
+ {board.prefix} · {board.hint}
+
+
+
+ ))}
+
+