import Link from "next/link"; import { Network, NotebookTabs, PanelsTopLeft, ScrollText, Settings2, UsersRound } from "lucide-react"; import { cn } from "@/lib/utils"; const navItems = [ { href: "/tasks", label: "Tasks", icon: PanelsTopLeft }, { href: "/agents", label: "Agents", icon: UsersRound }, { href: "/architecture", label: "Architecture", icon: Network }, { href: "/wiki", label: "Wiki", icon: NotebookTabs }, { href: "/usage", label: "Usage", icon: ScrollText }, { href: "/gitea", label: "Gitea", icon: Settings2 }, ]; export function AppShell({ pathname, children, }: { pathname: string; children: React.ReactNode; }) { return (

OpenClaw Taskboard

Claw Fleet Console

Unified operations view for OpenClaw orchestration, ZeroClaw host runtimes, and deployed architecture.

{children}
); }