Skip to content

Commit 66cc6be

Browse files
committed
hotfix: 게임 페이지 디자인 수정
1 parent ebdc39d commit 66cc6be

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

apps/farminglog/src/pages/game/index.tsx

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { useState } from 'react'; // useState를 import 합니다.
22
import { UnityWebGL } from '../../components/UnityWebGL';
3-
import { GameContainer, GameTitle, GameDescription, StartButton, StartContainer } from './index.styled.ts';
3+
import { GameContainer, GameTitle, StartButton, StartContainer } from './index.styled.ts';
44

55
const Game: React.FC = () => {
66
const [isGameStarted, setIsGameStarted] = useState(false);
@@ -11,11 +11,7 @@ const Game: React.FC = () => {
1111

1212
return (
1313
<GameContainer>
14-
<GameTitle>🌱 Farming Game</GameTitle>
15-
<GameDescription>
16-
농장을 관리하고 작물을 키워보세요!
17-
Unity로 제작된 WebGL 게임을 통해 농업의 즐거움을 경험할 수 있습니다.
18-
</GameDescription>
14+
<GameTitle>🌱 Grow My Farm</GameTitle>
1915

2016
{/** isGameStarted 값에 따라 조건부로 렌더링. */}
2117
{isGameStarted ? (

0 commit comments

Comments
 (0)