Skip to content

Commit

Permalink
뉴스레터 섹션 추가 및 아이콘 방향 일부 변경 (#408)
Browse files Browse the repository at this point in the history
  • Loading branch information
klmhyeonwoo authored Nov 25, 2024
2 parents 54fd8e1 + 8ef57b7 commit 7584971
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/Positions/PositionsItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export function PositionsItem({ type, title, link, description, keyword }: Posit
<span css={positionDescriptionCss}> {keyword.join(' · ')} </span>
<div css={applyBtnCss}>
<span> 지원하기 </span>
<Icon icon={'ic_arrow_black'} size={24} />
<Icon icon={'ic_arrow_black'} size={24} direction={'right'} />
</div>
</div>
</div>
Expand Down Expand Up @@ -74,7 +74,7 @@ export function PositionsItem({ type, title, link, description, keyword }: Posit
) : (
<Fragment>
지원하기
<Icon icon={'ic_arrow_white'} size={20} />
<Icon icon={'ic_arrow_white'} size={20} direction={'right'} />
</Fragment>
)}
</Link>
Expand Down
4 changes: 3 additions & 1 deletion src/features/Main/sections/MainSubscribeSection.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { BlogSubscribeSection } from '~/features/Blog/BlogSubscribeSection';

/**
* * Main 페이지 뉴스레터 구독 section
*/
export const MainSubscribeSection = () => {
return <section>Subscribe</section>;
return <BlogSubscribeSection />;
};

0 comments on commit 7584971

Please sign in to comment.