-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
26 additions
and
18 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,46 @@ | ||
import { colors } from '~/styles/colors'; | ||
|
||
export const OFFLINE_SESSIONS = [ | ||
{ | ||
title: '오리엔테이션', | ||
subTitle: 'Orientation', | ||
title: 'ORIENTATION', | ||
subTitle: '오리엔테이션', | ||
description: '디프만의 첫 시작, 서로를 알아갈 수 있는 오리엔테이션에 모두가 함께 해요.', | ||
img: '/images/session/orientation.png', | ||
img: '/images/offline-session/orientation.png', | ||
titleTextColor: colors.pink, | ||
}, | ||
{ | ||
title: '네트워킹 데이', | ||
subTitle: 'Networking Day', | ||
title: 'NETWORKING DAY', | ||
subTitle: '네트워킹 데이', | ||
description: '다른 팀, 직군의 멤버들을 만나요. TMI부터 커리어 토크까지 친해지는 시간을 가져요.', | ||
img: '/images/session/networking.png', | ||
img: '/images/offline-session/networking.png', | ||
titleTextColor: colors.blue, | ||
}, | ||
{ | ||
title: '사용성 테스트', | ||
subTitle: 'Usability Test', | ||
title: 'USABILITY TEST', | ||
subTitle: '사용성 테스트', | ||
description: '사용성 테스트를 통해 문제를 발견하고 개선하여 더 가치있는 서비스를 만들어요.', | ||
img: '/images/session/usability.png', | ||
img: '/images/offline-session/usability.png', | ||
titleTextColor: colors.green, | ||
}, | ||
{ | ||
title: '중간발표', | ||
subTitle: 'Midterm announce', | ||
title: 'MIDTERM ANNOUNCE', | ||
subTitle: '중간발표', | ||
description: '각 팀의 진행 상황을 공유하며 실질적인 피드백을 주고 받을 수 있어요.', | ||
img: '/images/session/midterm.png', | ||
img: '/images/offline-session/midterm.png', | ||
titleTextColor: colors.blue, | ||
}, | ||
{ | ||
title: '런칭데이', | ||
subTitle: 'Launching Day', | ||
title: 'LAUNCHING DAY', | ||
subTitle: '런칭데이', | ||
description: '런칭된 서비스를 팀 부스에서 공개해요. 모든 팀의 서비스를 사용해볼 수 있어요.', | ||
img: '/images/session/launching.png', | ||
img: '/images/offline-session/launching.png', | ||
titleTextColor: colors.pink, | ||
}, | ||
{ | ||
title: '최종발표', | ||
subTitle: 'Final announce', | ||
title: 'FINAL ANNOUNCE', | ||
subTitle: '최종발표', | ||
description: '서비스의 성과와 그 과정을 공유 및 회고하며 프로젝트를 마무리해요.', | ||
img: '/images/session/final.png', | ||
img: '/images/offline-session/final.png', | ||
titleTextColor: colors.purple, | ||
}, | ||
]; |