{#if state.currentStep !== 'upload'} {/if} {#if state.currentStep === 'upload'} {:else if state.currentStep === 'complete'} {:else}

{#if state.currentStep === 'captioning'} Analyzing your image... {:else if state.currentStep === 'conceptualizing'} Creating monster concept... {:else if state.currentStep === 'promptCrafting'} Crafting generation prompt... {:else if state.currentStep === 'generating'} Generating your monster... {/if}

{#if state.imageCaption && state.currentStep !== 'captioning'}

Image Description:

{state.imageCaption}

{/if} {#if state.monsterConcept && state.currentStep !== 'captioning' && state.currentStep !== 'conceptualizing'}

Monster Concept:

{state.monsterConcept}

{/if} {#if state.imagePrompt && state.currentStep === 'generating'}

Generation Prompt:

{state.imagePrompt}

{/if}
{/if}