Skip to content

Commit 7db26bb

Browse files
committed
feat: 미니게임 페이지 추가
1 parent 26d7423 commit 7db26bb

3 files changed

Lines changed: 8 additions & 5 deletions

File tree

app/extra-features/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

app/mini-game/game/GameSetup.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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">

app/mini-game/page.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
import Providers from "./providers";
2+
import Game from "./game/Game";
23

34
const 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

1114
export default MiniGamePage;

0 commit comments

Comments
 (0)