File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ const features = [
2828 {
2929 title : "미니게임" ,
3030 description : "다양한 미니게임을 하며 실력을 늘려보세요." ,
31- link : null ,
31+ link : '/mini-game' ,
3232 icon : Gamepad2 ,
3333 color : "from-purple-500 to-pink-500" ,
3434 bgColor : "group-hover:bg-purple-50 dark:group-hover:bg-purple-950/20"
Original file line number Diff line number Diff line change @@ -204,7 +204,7 @@ const GameSetup = () => {
204204
205205 return (
206206 < >
207- < div className = "game-setup-container bg-white h-[410px] p-2 rounded-lg shadow-lg w-[1000px] mt-5 " >
207+ < div className = "game-setup-container bg-white h-[410px] p-2 shadow-lg w-[1000px]" >
208208
209209 { /* 단어 로드 및 게임 설정을 가로로 배치 */ }
210210 < div className = "mb-4 flex gap-6 flex-col md:flex-row" >
Original file line number Diff line number Diff line change 11import Providers from "./providers" ;
2+ import Game from "./game/Game" ;
23
34const MiniGamePage = ( ) => {
45 return (
56 < Providers >
6- < > </ >
7+ < div className = "flex justify-center mt-8" >
8+ < Game />
9+ </ div >
710 </ Providers >
8- )
9- }
11+ ) ;
12+ } ;
1013
1114export default MiniGamePage ;
You can’t perform that action at this time.
0 commit comments