import { useTutorialStore } from '@stores/tutorialStore' import { ProgressBar } from './ProgressBar' import { PanelLeftClose, Trash2 } from 'lucide-react' export function StepNav() { const { config, currentStepIndex, setCurrentStep, isStepCompleted, toggleSidebar, resetProgress, completedSteps } = useTutorialStore() if (!config) return null return ( ) }