diff --git a/apps/client/src/pages/jobPins/JobPins.tsx b/apps/client/src/pages/jobPins/JobPins.tsx index 326b7f9f..74347057 100644 --- a/apps/client/src/pages/jobPins/JobPins.tsx +++ b/apps/client/src/pages/jobPins/JobPins.tsx @@ -1,36 +1,44 @@ -import { Icon } from '@pinback/design-system/icons'; -import { Balloon } from '@shared/components/balloon/Balloon'; +import { Card } from '@pinback/design-system/ui'; +import Footer from '@pages/myBookmark/components/footer/Footer'; + +const MOCK_JOB_PINS = Array.from({ length: 30 }, (_, index) => ({ + id: index + 1, + title: '텍스트텍스트텍스트텍스트텍스트텍스트텍스트', + content: '서브텍스트입니다서브텍스트입니다서브텍스트입니다서브텍스트입니다', + category: '카테고리명', + categoryColor: 'COLOR7' as const, + variant: 'save' as const, + nickname: index % 3 === 0 ? '구글닉네임명' : '', +})); const JobPins = () => { return ( -
관심 직무 핀
+기획자
++ 같은 직무의 사람들이 저장한 아티클을 살펴봐요. 선택한 직무를 기준으로 + 최신 핀이 업데이트 돼요! +
-
@@ -62,7 +72,16 @@ const MyBookmarkCard = ({
{date}
+ {variant === 'save' ? ( ++ {`(${displayNickname})님의 핀`} +
+{date}
+ )}