import { useTutorialStore } from '@stores/tutorialStore' export function ProgressBar() { const { getProgress, config, completedSteps } = useTutorialStore() const progress = getProgress() if (!config) return null const total = config.steps.length const completed = Math.min(completedSteps?.length ?? 0, total) return (