"use client" import * as React from "react" import { AudioWaveform, BookOpen, Bot, Command, Frame, GalleryVerticalEnd, House, Map, PieChart, Settings2, SquareTerminal, } from "lucide-react" import { NavMain } from "@/components/nav-main" import { NavProjects } from "@/components/nav-projects" import { NavUser } from "@/components/nav-user" import { TeamSwitcher } from "@/components/team-switcher" import { Sidebar, SidebarContent, SidebarFooter, SidebarHeader, SidebarRail, } from "@/components/ui/sidebar" // This is sample data. const data = { user: { name: "shadcn", email: "m@example.com", avatar: "/avatars/shadcn.jpg", }, teams: [ { name: "Acme Inc", logo: GalleryVerticalEnd, plan: "Enterprise", }, { name: "Acme Corp.", logo: AudioWaveform, plan: "Startup", }, { name: "Evil Corp.", logo: Command, plan: "Free", }, ], navMain: [ { title: "Início", url: "#", icon: House, isActive: false, items: [ { title: "Serviços", url: "/servicos/", }, ], }, { title: "Administrativo", url: "#", icon: SquareTerminal, isActive: true, items: [ { title: "Usuários", url: "/usuarios/", }, ], }, { title: "Cadastros", url: "#", icon: Bot, items: [ { title: "Reconhecimentos", url: "/cadastros/reconhecimentos/", }, { title: "Andamentos", url: "/cadastros/andamentos/", }, ], }, { title: "Documentation", url: "#", icon: BookOpen, items: [ { title: "Introduction", url: "#", }, { title: "Get Started", url: "#", }, { title: "Tutorials", url: "#", }, { title: "Changelog", url: "#", }, ], }, { title: "Settings", url: "#", icon: Settings2, items: [ { title: "General", url: "#", }, { title: "Team", url: "#", }, { title: "Billing", url: "#", }, { title: "Limits", url: "#", }, ], }, ], projects: [ { name: "Design Engineering", url: "#", icon: Frame, }, { name: "Sales & Marketing", url: "#", icon: PieChart, }, { name: "Travel", url: "#", icon: Map, }, ], } export function AppSidebar({ ...props }: React.ComponentProps) { return ( ) }