Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

뉴스레터 섹션 추가 및 아이콘 방향 일부 변경 #408

Merged
merged 1 commit into from
Nov 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 />;
};
Loading