import Link from "next/link"; const NAV = [ { href: "/agents", label: "Agents", icon: "◈" }, { href: "/tasks", label: "Tasks", icon: "◉" }, { href: "/memory", label: "Memory", icon: "◫" }, { href: "/chat", label: "Chat", icon: "◎" }, ]; export default function AppLayout({ children, }: { children: React.ReactNode; }) { return (
{/* Sidebar */} {/* Main */}
{children}
); }