@@ -22,7 +22,7 @@ export default function GameMode({ lessons }: GameModeProps) {
2222 id : 'first-zombie' ,
2323 title : 'First Zombie' ,
2424 description : 'Created your first zombie' ,
25- icon : '🧟 ' ,
25+ icon : '' ,
2626 rarity : 'common' ,
2727 } ,
2828 {
@@ -109,7 +109,7 @@ export default function GameMode({ lessons }: GameModeProps) {
109109 < div className = "bg-gradient-to-br from-gray-800 to-gray-900 rounded-2xl shadow-2xl p-8 border-2 border-purple-500" >
110110 < div className = "mb-6" >
111111 < div className = "flex items-center gap-3 mb-4" >
112- < span className = "text-4xl flex-shrink-0" > 🧟 </ span >
112+ < span className = "text-4xl flex-shrink-0" > </ span >
113113 < div className = "min-w-0 flex-1" >
114114 < h1 className = "text-3xl font-bold text-white mb-2 break-words" >
115115 { currentLesson . title }
@@ -119,7 +119,7 @@ export default function GameMode({ lessons }: GameModeProps) {
119119 </ div >
120120
121121 < div className = "bg-gray-800/50 rounded-lg p-4 mb-6 border border-purple-500/30" >
122- < h3 className = "text-lg font-bold text-purple-300 mb-2" > 📖 Story</ h3 >
122+ < h3 className = "text-lg font-bold text-purple-300 mb-2" > Story</ h3 >
123123 < p className = "text-gray-300 whitespace-pre-line break-words" > { currentLesson . story } </ p >
124124 </ div >
125125
@@ -139,7 +139,7 @@ export default function GameMode({ lessons }: GameModeProps) {
139139 </ h2 >
140140 < p className = "text-gray-300 mb-4 break-words" > { currentChallenge . description } </ p >
141141 < div className = "bg-blue-900/30 rounded-lg p-4 border border-blue-700" >
142- < h3 className = "text-lg font-semibold text-blue-300 mb-2" > 📋 Instructions</ h3 >
142+ < h3 className = "text-lg font-semibold text-blue-300 mb-2" > Instructions</ h3 >
143143 < p className = "text-gray-300 whitespace-pre-line break-words" > { currentChallenge . instructions } </ p >
144144 </ div >
145145 </ div >
@@ -155,7 +155,7 @@ export default function GameMode({ lessons }: GameModeProps) {
155155 < GameProgressComponent progress = { progress } />
156156
157157 < div className = "mt-6 bg-gray-800 rounded-2xl shadow-xl p-6 border border-gray-700" >
158- < h3 className = "text-xl font-bold text-white mb-4" > 📚 Chapters</ h3 >
158+ < h3 className = "text-xl font-bold text-white mb-4" > Chapters</ h3 >
159159 < div className = "space-y-2" >
160160 { lessons . map ( ( lesson ) => (
161161 < button
@@ -177,7 +177,7 @@ export default function GameMode({ lessons }: GameModeProps) {
177177 >
178178 < div className = "flex items-center justify-between gap-2" >
179179 < span className = "font-semibold break-words" > Chapter { lesson . chapter } </ span >
180- { ! lesson . unlocked && < span className = "flex-shrink-0" > 🔒 </ span > }
180+ { ! lesson . unlocked && < span className = "flex-shrink-0" > LOCKED </ span > }
181181 </ div >
182182 < p className = "text-sm mt-1 opacity-75 break-words" > { lesson . title } </ p >
183183 </ button >
0 commit comments