import { Header } from './components/Header';
import { StepUserPrompts } from './components/StepUserPrompts';
import { useSteps } from './hooks/useSteps';
import { StepFeatures } from './components/StepFeatures';
import { ThinkingGradient } from '@/apps/onboarding/components/ThinkingGradient';
import { StepPlugins } from './components/StepPlugins';
import { StepPackages } from './components/StepPackages';
import { useThinkingStore } from './stores/thinkingStore';
import { StepSummary } from './components/StepSummary';
export const Onboarding = () => {
const { currentStep } = useSteps();
const { isBlocked } = useThinkingStore();
return (
<>
{
currentStep.id === 'user-prompts' &&
}
{
currentStep.id === 'features' &&
}
{
currentStep.id === 'plugins' &&
}
{
currentStep.id === 'summary' &&
}
{
currentStep.id === 'packages' &&
}
{/* {
currentStep.id === '' &&
} */}
>
)
}