import { IconCamera, IconChartBar, IconDashboard, IconFileAi, IconFileDescription, IconFolder, IconHelp, IconInnerShadowTop, IconListDetails, IconMessageDots, IconUsers } from "@tabler/icons-react"; import * as React from "react"; import { NavMain } from "@/components/nav-main"; import { NavSecondary } from "@/components/nav-secondary"; import { Sidebar, SidebarContent, SidebarHeader, SidebarMenu, SidebarMenuButton, SidebarMenuItem, } from "@/components/ui/sidebar"; const data = { navMain: [ { title: "Dashboard", url: "#", icon: IconDashboard, }, { title: "Lifecycle", url: "#", icon: IconListDetails, }, { title: "Analytics", url: "#", icon: IconChartBar, }, { 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: "Kritik dan Saran", url: "#", icon: IconMessageDots, }, { title: "Bantuan", url: "#", icon: IconHelp, }, ], } export function AppSidebar({ ...props }: React.ComponentProps) { return ( Acme Inc. ) }