diff --git a/chatgpt-to-claude/src/components/wizard/WizardNav.tsx b/chatgpt-to-claude/src/components/wizard/WizardNav.tsx new file mode 100644 index 000000000..67ab1b7cc --- /dev/null +++ b/chatgpt-to-claude/src/components/wizard/WizardNav.tsx @@ -0,0 +1,52 @@ +import type { WizardStep } from "./useWizardState"; + +interface WizardNavProps { + currentStep: WizardStep; + canGoNext: boolean; + onNext: () => void; + onBack: () => void; + onReset: () => void; +} + +export default function WizardNav({ + currentStep, + canGoNext, + onNext, + onBack, + onReset, +}: WizardNavProps) { + return ( +
+
+ {currentStep > 1 && ( + + )} + +
+ + {currentStep < 4 && ( + + )} +
+ ); +} diff --git a/memory/memories.db-wal b/memory/memories.db-wal index 9be4e9c9f..4cb500f9e 100644 Binary files a/memory/memories.db-wal and b/memory/memories.db-wal differ