diff --git a/apps/web/src/app/community/[boardCode]/[postId]/modify/PostModifyForm.tsx b/apps/web/src/app/community/[boardCode]/[postId]/modify/PostModifyForm.tsx index 3f25b9c9..d9897b7e 100644 --- a/apps/web/src/app/community/[boardCode]/[postId]/modify/PostModifyForm.tsx +++ b/apps/web/src/app/community/[boardCode]/[postId]/modify/PostModifyForm.tsx @@ -93,8 +93,9 @@ const PostModifyForm = ({ ); }; - const notice = - "글 작성 시 유의사항\n\n인종, 성별, 출신, 지역, 이념 관련 차별 관련 발언 및 타인에게 불쾌감을 유발할 수 있는 글은 삭제될 수 있습니다.\n\n솔리드 커넥션은 홍보 행위를 철저히 금지합니다."; + const noticeTitle = "[글 작성 시 유의사항]"; + const noticeContent = + "인종, 성별, 출신, 지역, 이념 관련 차별 관련 발언 및 타인에게 불쾌감을 유발할 수 있는 글은 삭제될 수 있습니다.\n\n솔리드 커넥션은 홍보 행위를 철저히 금지합니다."; return ( <> @@ -147,10 +148,10 @@ const PostModifyForm = ({ onChange={(e) => setContent(e.target.value)} /> -
") }} - /> +{noticeTitle}
+{noticeContent}
+{noticeTitle}
+{noticeContent}
+{introduction}
{/* 멘토 채널 */} -{nickname}님은
현재{" "}
-
+
{profileData.role === UserRole.ADMIN ? "어드민" : isMentor ? "멘토" : "멘티"}
{" "}
솔커예요.
diff --git a/apps/web/src/components/ui/LinkedTextWithIcon/index.tsx b/apps/web/src/components/ui/LinkedTextWithIcon/index.tsx
index 5b8ebccf..9c3caf9a 100644
--- a/apps/web/src/components/ui/LinkedTextWithIcon/index.tsx
+++ b/apps/web/src/components/ui/LinkedTextWithIcon/index.tsx
@@ -58,11 +58,11 @@ const Content = ({ icon, text, subText, textColor = "text-k-700" }: ContentProps
{/* 왼쪽 아이콘 + 텍스트 */}