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

[Chore] 36기로 변경 #430

Merged
merged 2 commits into from
Sep 28, 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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v1
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: '18'

- name: Install pnpm
run: npm install -g [email protected]
Expand Down
2 changes: 1 addition & 1 deletion src/views/MainPage/components/Banner/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function Banner() {
<S.Title>함께라서 외칠 수 있는 열정</S.Title>
<S.Title>오직 이곳 SOPT에서만.</S.Title>
<RecruitButton>
{isValid ? '35기 YB 지원하기 ' : '모집 알림 신청하기 '}&gt;{' '}
{isValid ? '36기 YB 지원하기 ' : '모집 알림 신청하기 '}&gt;{' '}
</RecruitButton>
</S.Content>
<S.DownScrollIcon onClick={onScrollMoveDown} />
Expand Down
6 changes: 3 additions & 3 deletions src/views/MainPage/components/RecruitMessage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ export default function RecruitMessage() {

return (
<S.Background>
<S.Title>솝트의 35번째{isMobileSize ? <br /> : ' '}열정이 되어주세요!</S.Title>
<S.Title>솝트의 36번째{isMobileSize ? <br /> : ' '}열정이 되어주세요!</S.Title>
{!isValid && (
<S.Description>
아직 모집기간이 아니예요.{isMobileSize && <br />}알림 신청을 하시면, 가을에 찾아갈게요!
아직 모집기간이 아니예요.{isMobileSize && <br />}알림 신청을 하시면, 봄에 찾아갈게요!
</S.Description>
)}
<RecruitButton>{isValid ? '35기 YB 지원하기 ' : '모집 알림 신청하기 '}&gt; </RecruitButton>
<RecruitButton>{isValid ? '36기 YB 지원하기 ' : '모집 알림 신청하기 '}&gt; </RecruitButton>
</S.Background>
);
}
2 changes: 1 addition & 1 deletion src/views/MainPage/components/TopBanner/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function TopBanner() {
<S.Container href="/recruit" isKeyColor={isKeyColor}>
<S.Wrapper>
<div>
<S.Title>솝트의 35번째 열정이 되어주세요!</S.Title>
<S.Title>솝트의 36번째 열정이 되어주세요!</S.Title>
</div>
<S.Description>
<S.Timer>
Expand Down
Loading