import { Sidebar, SidebarContent, SidebarGroup, SidebarGroupLabel, SidebarGroupContent, SidebarMenu, SidebarMenuItem, SidebarMenuButton, } from "@/components/ui/sidebar"; import { Settings } from "lucide-react"; import { useLocation, NavLink } from "react-router-dom"; export default function SettingsSidebar() { const location = useLocation(); return ( Configurações Geral {/* Adicione outros itens de configuração aqui futuramente */} ); }