diff --git a/src/app/(steady)/steady/review/[id]/page.tsx b/src/app/(steady)/steady/review/[id]/page.tsx
index d527d798..8be8f81d 100644
--- a/src/app/(steady)/steady/review/[id]/page.tsx
+++ b/src/app/(steady)/steady/review/[id]/page.tsx
@@ -94,9 +94,11 @@ const ReviewPage = () => {
};
return (
-
+
-
{data?.steady.name} 리뷰
+
+ {data?.steady.name} 리뷰
+
-
-
+
+
-
+
스테디 구분
-
+
{data?.steady.steadyType === "STUDY" ? "스터디" : "프로젝트"}
-
+
진행 방식
-
+
{data?.steady.steadyMode === "ONLINE"
? "온라인"
: data?.steady.steadyMode === "OFFLINE"
@@ -130,21 +132,23 @@ const ReviewPage = () => {
-
- 진행 기간
+
+ 참여 기간
-
+
{data?.steady.participatedAt} ~ {data?.steady.finishedAt}
-
+
진행 인원
-
{data?.steady.participants}명
+
+ {data?.steady.participants}명
+
-
+
{data?.reviewees.map((participant) => (
{
completedUser.some(
(item) => item.revieweeId === participant.userId,
) && "border border-2 border-st-green"
- } flex cursor-pointer flex-col items-center justify-center rounded-md text-20 font-bold`}
+ } flex cursor-pointer flex-col items-center justify-center gap-10 rounded-md text-15 font-bold md:text-20`}
onClick={() => handleSelectedUser(participant.userId)}
>
-
+
+
+
{participant.nickname}
))}
-
+
-
+
{reviewCards.cards.map((card) => (
{
cardArray.indexOf(card.cardId) !== -1
? "bg-st-green"
: "bg-st-white"
- } rounded-5 border`}
+ } rounded-5`}
onClick={() => handleCardArray(card.cardId)}
/>
-
- {card.content}
+
+
+
+
+ {card.content}
+
))}
-
+