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"; const data = { navMain: [ { title: "Conversation", url: "/home/conversation", icon: MessageSquare, }, { title: "Memory", url: "/home/dashboard", icon: Network, }, { title: "Activity", url: "/home/activity", icon: Activity, }, { title: "Integrations", url: "/home/integrations", icon: LayoutGrid, }, ], }; export function AppSidebar({ ...props }: React.ComponentProps) { const user = useUser(); return (
); }