"use client" import * as React from "react" import { IconCamera, IconChartBar, IconDashboard, IconDatabase, IconFileAi, IconFileDescription, IconFileWord, IconFolder, IconHelp, IconInnerShadowTop, IconListDetails, IconReport, IconSearch, IconSettings, IconUsers, } from "@tabler/icons-react" import { NavMain } from "@/frontend/components/dashboard/nav-main" import { NavSecondary } from "@/frontend/components/dashboard/nav-secondary" import { NavUser } from "@/frontend/components/dashboard/nav-user" import { NavDocuments } from "@/frontend/components/dashboard/nav-documents" import { Sidebar, SidebarContent, SidebarFooter, SidebarHeader, SidebarMenu, SidebarMenuButton, SidebarMenuItem, } from "@/frontend/components/ui/sidebar" const data = { user: { name: "shadcn", email: "m@example.com", avatar: "/avatars/shadcn.jpg", }, 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: "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. ) }