Skip to content

Commit c18fdd6

Browse files
committed
feat(resume): CV 페이지 개편
이력서 페이지를 CV 중심 레이아웃으로 재구성했어요. 경력과 프로젝트를 분리하고, 이력서 문서 내용을 반영해 자기소개와 프로젝트 서술을 보강했어요. 스킬, 활동, 학력, 자격증 섹션의 시각적 계층과 리스트 렌더링을 정리했어요.
1 parent fac2200 commit c18fdd6

3 files changed

Lines changed: 681 additions & 461 deletions

File tree

src/domains/resume/model/types.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ export interface Experience {
22
company: string;
33
role: string;
44
period: string;
5+
summary: string;
6+
highlights: string[];
57
projects: ExperienceProject[];
68
}
79

@@ -49,10 +51,15 @@ export interface PersonalInfo {
4951
phone?: string;
5052
github: string;
5153
blog?: string;
52-
skills: string[];
54+
skillGroups: SkillGroup[];
5355
introduction?: string;
5456
}
5557

58+
export interface SkillGroup {
59+
category: string;
60+
skills: string[];
61+
}
62+
5663
export interface Education {
5764
school: string;
5865
degree: string;

0 commit comments

Comments
 (0)