"use client" import * as React from "react" import { IconCalendarStats, IconDashboard, IconFolder, IconHelp, IconInnerShadowTop, IconSearch, IconSettings, } from "@tabler/icons-react" import { NavMain } from "@/components/nav-main" import { NavSecondary } from "@/components/nav-secondary" import { NavUser } from "@/components/nav-user" import { Sidebar, SidebarContent, SidebarFooter, SidebarHeader, SidebarMenu, SidebarMenuButton, SidebarMenuItem, } from "@/components/ui/sidebar" const data = { user: { name: "shadcn", email: "m@example.com", avatar: "/avatars/shadcn.jpg", }, navMain: [ { title: "Dashboard", url: "/dashboard", icon: IconDashboard, }, { title: "Projects", url: "/dashboard/projects", icon: IconFolder, }, { title: "Schedule", url: "/dashboard/projects/demo-project-1/schedule", icon: IconCalendarStats, }, ], navSecondary: [ { title: "Settings", url: "#", icon: IconSettings, }, { title: "Get Help", url: "#", icon: IconHelp, }, { title: "Search", url: "#", icon: IconSearch, }, ], } export function AppSidebar({ ...props }: React.ComponentProps) { return ( COMPASS ) }