-
Notifications
You must be signed in to change notification settings - Fork 9
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
[Feat] 메인 14기 일정 디자인 구현 #280
Merged
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
849d58c
feat: Journey section add
sumi-0011 0e11548
feat: 여정 합류 PC
sumi-0011 afaef4a
feat: layout media query add
sumi-0011 b8cc29f
Merge branch 'feat/journey' into feat/journey-media
sumi-0011 5da8b92
feat: journey mobile
sumi-0011 2965fb1
feat: 모집안내 바로가기 생성
sumi-0011 c3fb6da
refactor: css 분리
sumi-0011 f477c33
Merge branch 'develop' into feat/recruit-entrance
sumi-0011 3b7cac8
fix: build error fix
sumi-0011 6de0437
feat: schedule 상수로 분리, main 에 추가
sumi-0011 25dda3f
style: 14기 일정 추가
sumi-0011 71d067b
style: SectionTitle 반응형 추가
sumi-0011 90a304c
Merge branch 'develop' into feat/main-schedule
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
import { theme } from '~/styles/theme'; | ||
|
||
interface Schedule { | ||
label: string; | ||
title: string; | ||
schedule: Array<{ | ||
date: string; | ||
content: string; | ||
}>; | ||
|
||
titleBgColor: keyof typeof theme.colors; | ||
} | ||
|
||
export const MEMBER_SCHEDULE: Schedule = { | ||
label: 'members', | ||
title: '멤버모집', | ||
titleBgColor: 'blue400', | ||
schedule: [ | ||
{ | ||
date: '10.09', | ||
content: '서류 접수 시작', | ||
}, | ||
{ | ||
date: '10.18', | ||
content: '서류 마감', | ||
}, | ||
{ | ||
date: '10.21-22', | ||
content: '온라인 면접', | ||
}, | ||
{ | ||
date: '10.31', | ||
content: '최종 합격 안내', | ||
}, | ||
], | ||
}; | ||
|
||
export const SESSION_SCHEDULES: Schedule = { | ||
label: 'sessions', | ||
title: '정기 세션', | ||
titleBgColor: 'yellow400', | ||
schedule: [ | ||
{ | ||
date: '11.04', | ||
content: 'OT', | ||
}, | ||
{ | ||
date: '11.25', | ||
content: '네트워킹', | ||
}, | ||
{ | ||
date: '12.09', | ||
content: 'UT', | ||
}, | ||
{ | ||
date: '12.23', | ||
content: '중간 발표', | ||
}, | ||
{ | ||
date: '01.20', | ||
content: '배포데이', | ||
}, | ||
{ | ||
date: '02.17', | ||
content: '최종 발표', | ||
}, | ||
], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍