@@ -579,32 +579,6 @@ export default function Home() {
579579 </ fieldset >
580580 </ div >
581581
582- { /* No Dialogue Option */ }
583- < div className = "mb-4" >
584- < label className = "flex items-center space-x-2" >
585- < input
586- type = "checkbox"
587- className = "form-checkbox h-4 w-4 text-manga-black"
588- checked = { noDialogue }
589- onChange = { ( e ) => {
590- setNoDialogue ( e . target . checked ) ;
591- trackEvent ( {
592- action : "toggle_no_dialogue" ,
593- category : "user_interaction" ,
594- label : e . target . checked ? "enabled" : "disabled" ,
595- } ) ;
596- } }
597- />
598- < span className = "text-manga-black font-medium" >
599- No Dialogue Mode
600- </ span >
601- </ label >
602- < p className = "text-sm text-manga-medium-gray mt-1" >
603- Generate panels without speech bubbles for pure visual
604- storytelling
605- </ p >
606- </ div >
607-
608582 { /* Story Input */ }
609583 < div className = "mb-4" >
610584 < label
@@ -654,6 +628,32 @@ export default function Home() {
654628 ) }
655629 </ div >
656630
631+ { /* No Dialogue Option */ }
632+ < div className = "mb-4" >
633+ < label className = "flex items-center space-x-2" >
634+ < input
635+ type = "checkbox"
636+ className = "form-checkbox h-4 w-4 text-manga-black"
637+ checked = { noDialogue }
638+ onChange = { ( e ) => {
639+ setNoDialogue ( e . target . checked ) ;
640+ trackEvent ( {
641+ action : "toggle_no_dialogue" ,
642+ category : "user_interaction" ,
643+ label : e . target . checked ? "enabled" : "disabled" ,
644+ } ) ;
645+ } }
646+ />
647+ < span className = "text-manga-black font-medium" >
648+ No Dialogue Mode
649+ </ span >
650+ </ label >
651+ < p className = "text-sm text-manga-medium-gray mt-1" >
652+ Generate panels without speech bubbles for pure visual
653+ storytelling
654+ </ p >
655+ </ div >
656+
657657 { /* Reference Images Upload - Optional */ }
658658 < div className = "mb-4 space-y-4" >
659659 { /* Character Reference Images */ }
0 commit comments