import { ListChecks, SlidersHorizontal, TestTube, Zap } from "lucide-react" import type { LucideIcon } from "lucide-react" import { SECTIONS, type SectionId } from "@/modules/registry" import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, } from "@/components/ui/tooltip" const SECTION_ICON: Record = { test: TestTube, automation: ListChecks, settings: SlidersHorizontal, } export function Sidebar() { return ( ) }