import * as React from "react"; import { Sidebar, SidebarContent, SidebarFooter, SidebarHeader, SidebarMenu, SidebarMenuItem, } from "../ui/sidebar"; import { Activity, LayoutGrid, MessageSquare, Network } from "lucide-react"; import { NavMain } from "./nav-main"; import { useUser } from "~/hooks/useUser"; import { NavUser } from "./nav-user"; import Logo from "../logo/logo"; import { ConversationList } from "../conversation"; const data = { navMain: [ { title: "Conversation", url: "/home/conversation", icon: MessageSquare, }, { title: "Memory", url: "/home/dashboard", icon: Network, }, { title: "Logs", url: "/home/logs/all", icon: Activity, }, { title: "Integrations", url: "/home/integrations", icon: LayoutGrid, }, ], }; export function AppSidebar({ ...props }: React.ComponentProps) { const user = useUser(); return (
C.O.R.E.

History

); }