@@ -25,18 +25,18 @@ export default function CriacaoPersonagem() {
25
25
return (
26
26
< div className = { styles . container } >
27
27
< div className = { styles . sidebar } >
28
- < Image src = " /images/logo-easycrit-rounded.png" alt = " Logo EasyCrit" width = { 120 } height = { 120 } />
28
+ < Image src = ' /images/logo-easycrit-rounded.png' alt = ' Logo EasyCrit' width = { 120 } height = { 120 } />
29
29
</ div >
30
30
31
31
< div className = { styles . content } >
32
32
< div className = { styles . topbar } >
33
33
< div className = { styles . starTitle } >
34
- < Image src = " /images/star.png" alt = " Star" width = { 24 } height = { 24 } />
34
+ < Image src = ' /images/star.png' alt = ' Star' width = { 24 } height = { 24 } />
35
35
< h1 className = { styles . titulo } > Seu Personagem</ h1 >
36
36
</ div >
37
37
< div className = { styles . user } >
38
38
< button className = { styles . logout } > Logout</ button >
39
- < Image src = " /images/mclovin.png" alt = " User" width = { 40 } height = { 40 } className = { styles . avatar } />
39
+ < Image src = ' /images/mclovin.png' alt = ' User' width = { 40 } height = { 40 } className = { styles . avatar } />
40
40
</ div >
41
41
</ div >
42
42
@@ -46,20 +46,14 @@ export default function CriacaoPersonagem() {
46
46
< div className = { styles . grupoInputs } >
47
47
< div className = { styles . inputArea } >
48
48
< label > Nome do Personagem</ label >
49
- < input
50
- type = "text"
51
- value = { nome }
52
- onChange = { ( e ) => setNome ( e . target . value ) }
53
- placeholder = "Digite o nome"
54
- />
49
+ < input type = 'text' value = { nome } onChange = { ( e ) => setNome ( e . target . value ) } placeholder = 'Digite o nome' />
55
50
56
51
< label > Bibliografia</ label >
57
52
< textarea
58
53
value = { classe }
59
54
onChange = { ( e ) => setClasse ( e . target . value ) }
60
- placeholder = "Digite a bibliografia"
61
- className = { styles . textareaBibliografia }
62
- > </ textarea >
55
+ placeholder = 'Digite a bibliografia'
56
+ className = { styles . textareaBibliografia } > </ textarea >
63
57
64
58
< div className = { styles . colors } >
65
59
< div className = { `${ styles . color } ${ styles . black } ` } > </ div >
@@ -75,19 +69,19 @@ export default function CriacaoPersonagem() {
75
69
< label > Preview da Ficha</ label >
76
70
< div className = { styles . previewInput } >
77
71
< input
78
- type = " text"
72
+ type = ' text'
79
73
value = { preview }
80
74
onChange = { ( e ) => setPreview ( e . target . value ) }
81
- placeholder = " Digite a preview"
75
+ placeholder = ' Digite a preview'
82
76
/>
83
- < Image src = " /images/identification.png" alt = " Identificação" width = { 20 } height = { 20 } />
77
+ < Image src = ' /images/identification.png' alt = ' Identificação' width = { 20 } height = { 20 } />
84
78
</ div >
85
79
86
80
< div className = { styles . imagePlaceholder } >
87
- < Image src = " /images/file.png" alt = " Preview" width = { 50 } height = { 50 } />
81
+ < Image src = ' /images/file.png' alt = ' Preview' width = { 50 } height = { 50 } />
88
82
< Image
89
- src = " /images/lixeira.png"
90
- alt = " Excluir"
83
+ src = ' /images/lixeira.png'
84
+ alt = ' Excluir'
91
85
width = { 24 }
92
86
height = { 24 }
93
87
onClick = { handleReset }
@@ -98,8 +92,12 @@ export default function CriacaoPersonagem() {
98
92
</ div >
99
93
100
94
< div className = { styles . buttons } >
101
- < button type = "button" className = { styles . cancelar } onClick = { handleReset } > Cancelar</ button >
102
- < button type = "submit" className = { styles . confirmar } > Confirmar</ button >
95
+ < button type = 'button' className = { styles . cancelar } onClick = { handleReset } >
96
+ Cancelar
97
+ </ button >
98
+ < button type = 'submit' className = { styles . confirmar } >
99
+ Confirmar
100
+ </ button >
103
101
</ div >
104
102
</ form >
105
103
0 commit comments