@@ -246,7 +246,30 @@ export const PostDetailView = ({ postId }: { postId: string }) => {
246246
247247 { /* ํ์ฌ ์๊ฐ */ }
248248 < div className = "flex w-full flex-col gap-4 md:max-w-[580px]" >
249- < p className = "text-xl font-semibold" > ํ์ฌ ์๊ฐ</ p >
249+ { /* ์์ธ ๊ณต๊ณ ๊ธ */ }
250+ < section className = "flex w-full flex-col gap-[30px] md:max-w-[580px]" >
251+ < div className = "flex flex-col gap-4 rounded-lg bg-grey-50 px-[34px] py-[24px]" >
252+ < div className = "flex items-center gap-2" >
253+ < img src = { ICON_SRC . PERSON } />
254+ < span >
255+ { formatMinorJobToLabel ( position . positionType ) } { ' ' }
256+ { position . headCount } ๋ช
257+ </ span >
258+ </ div >
259+ < div className = "flex flex-1 gap-4" >
260+ < span className = "text-grey-700" > ์๊ธ</ span >
261+ { position . salary == null ? (
262+ < span > ์ถํ ํ์</ span >
263+ ) : (
264+ < span > { position . salary } ๋ง์</ span >
265+ ) }
266+ </ div >
267+ </ div >
268+ </ section >
269+
270+ < SeperatorLine className = "md:max-w-[580px]" />
271+
272+ < p className = "text-2xl font-semibold" > ํ์ฌ ์๊ฐ</ p >
250273 { /* ํ์ฌ ์ค๋ช
์นด๋ */ }
251274 < section className = "flex flex-col gap-4 rounded-lg bg-grey-50 px-[34px] py-[24px]" >
252275 < div className = "flex flex-col gap-4 md:flex-row md:gap-[68px]" >
@@ -376,36 +399,16 @@ export const PostDetailView = ({ postId }: { postId: string }) => {
376399 </ p >
377400 </ section >
378401 ) }
379- </ div >
380- </ div >
381- </ div >
382402
383- < SeperatorLine className = "md:max-w-[580px]" />
384-
385- { /* ์์ธ ๊ณต๊ณ ๊ธ */ }
386- < section className = "flex w-full flex-col gap-[30px] md:max-w-[580px]" >
387- < span className = "text-2xl font-bold" > ์์ธ ๊ณต๊ณ ๊ธ</ span >
388- < div className = "flex flex-col gap-4 rounded-lg bg-grey-50 px-[34px] py-[24px]" >
389- < div className = "flex items-center gap-2" >
390- < img src = { ICON_SRC . PERSON } />
391- < span >
392- { formatMinorJobToLabel ( position . positionType ) } { ' ' }
393- { position . headCount } ๋ช
394- </ span >
395- </ div >
396- < div className = "flex flex-1 gap-4" >
397- < span className = "text-grey-700" > ์๊ธ</ span >
398- { position . salary == null ? (
399- < span > ์ถํ ํ์</ span >
400- ) : (
401- < span > { position . salary } ๋ง์</ span >
402- ) }
403+ < SeperatorLine className = "md:max-w-[580px]" />
404+
405+ < span className = "text-2xl font-bold" > ์์ธ ๊ณต๊ณ ๊ธ</ span >
406+ < div className = "flex rounded-md border" >
407+ < MarkdownPreview content = { position . detail } />
408+ </ div >
403409 </ div >
404410 </ div >
405- < div className = "flex rounded-md border" >
406- < MarkdownPreview content = { position . detail } />
407- </ div >
408- </ section >
411+ </ div >
409412
410413 { showModal === 'BOOKMARK' && (
411414 < SignInForBookmarkModal onClose = { closeModal } />
0 commit comments