"use client" import * as React from "react" import { IconCamera, IconChartBar, IconDashboard, IconDatabase, IconFileAi, IconFileDescription, IconFileWord, IconFolder, IconHelp, IconInnerShadowTop, IconListDetails, IconReport, IconSearch, IconSettings, IconUsers, IconBuilding } from "@tabler/icons-react" import { NavMain } from "@/components/dashboard/nav-main" import { NavSecondary } from "@/components/dashboard/nav-secondary" import { NavUser } from "@/components/dashboard/nav-user" import { NavDocuments } from "@/components/dashboard/nav-documents" import { Sidebar, SidebarContent, SidebarFooter, SidebarHeader, SidebarMenu, SidebarMenuButton, SidebarMenuItem, } from "@/components/ui/sidebar" const data = { user: { name: "shadcn", email: "m@example.com", avatar: "https://avatars.githubusercontent.com/u/124599?v=4", }, navMain: [ { title: "Users", url: "/users", icon: IconUsers, }, { title: "People", url: "/people", icon: IconListDetails, }, { title: "Build", url: "/build", icon: IconBuilding, }, // { // title: "Projects", // url: "#", // icon: IconFolder, // }, // { // title: "Team", // url: "#", // icon: IconUsers, // }, ], navClouds: [ { title: "Capture", icon: IconCamera, isActive: true, url: "#", items: [ { title: "Active Proposals", url: "#", }, { title: "Archived", url: "#", }, ], }, { title: "Proposal", icon: IconFileDescription, url: "#", items: [ { title: "Active Proposals", url: "#", }, { title: "Archived", url: "#", }, ], }, { title: "Prompts", icon: IconFileAi, url: "#", items: [ { title: "Active Proposals", url: "#", }, { title: "Archived", url: "#", }, ], }, ], navSecondary: [ { title: "Settings", url: "#", icon: IconSettings, }, { title: "Get Help", url: "#", icon: IconHelp, }, { title: "Search", url: "#", icon: IconSearch, }, ], documents: [ { name: "Data Library", url: "#", icon: IconDatabase, }, { name: "Reports", url: "#", icon: IconReport, }, { name: "Word Assistant", url: "#", icon: IconFileWord, }, ], } export function AppSidebar({ ...props }: React.ComponentProps) { return ( Acme Inc. ) }