File tree Expand file tree Collapse file tree 1 file changed +15
-14
lines changed Expand file tree Collapse file tree 1 file changed +15
-14
lines changed Original file line number Diff line number Diff line change @@ -85,6 +85,21 @@ const QuizFinishPage: React.FC = () => {
85
85
정답수 { 30 - faillist . length } 개 ({ calculatedScore } 점) + 가점 ({ plus } 점)
86
86
</ p >
87
87
</ div >
88
+
89
+ < div className = "flex flex-col mx-auto items-center justify-center space-y-4 mt-12 w-full max-w-[330px] mb-4 sm:mb-2" >
90
+ < button
91
+ onClick = { ( ) => router . push ( '/quiz/ranking' ) }
92
+ className = "w-full h-[50px] py-3 rounded-[12px] text-lg font-bold bg-gradient2 text-heading4 text-white text-center"
93
+ >
94
+ 내 순위 확인하기
95
+ </ button >
96
+ < button
97
+ onClick = { ( ) => router . push ( '/' ) }
98
+ className = "w-full h-[50px] py-3 rounded-[12px] text-lg font-bold bg-gradient2 text-heading4 text-white text-center"
99
+ >
100
+ 홈으로 이동
101
+ </ button >
102
+ </ div >
88
103
89
104
{ calculatedScore === 90 ? (
90
105
< div className = "flex flex-col items-center justify-center text-center mt-0 flex-grow sm:flex-grow-0 sm:mt-8" >
@@ -133,20 +148,6 @@ const QuizFinishPage: React.FC = () => {
133
148
</ >
134
149
) }
135
150
136
- < div className = "flex flex-col mx-auto items-center justify-center space-y-4 mt-12 w-full max-w-[330px] mb-4 sm:mb-2" >
137
- < button
138
- onClick = { ( ) => router . push ( '/quiz/ranking' ) }
139
- className = "w-full h-[50px] py-3 rounded-[12px] text-lg font-bold bg-gradient2 text-heading4 text-white text-center"
140
- >
141
- 내 순위 확인하기
142
- </ button >
143
- < button
144
- onClick = { ( ) => router . push ( '/' ) }
145
- className = "w-full h-[50px] py-3 rounded-[12px] text-lg font-bold bg-gradient2 text-heading4 text-white text-center"
146
- >
147
- 홈으로 이동
148
- </ button >
149
- </ div >
150
151
</ div >
151
152
) ;
152
153
} ;
You can’t perform that action at this time.
0 commit comments