Skip to content

Commit

Permalink
feat(about): 우형 24 4Q 이력 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
1ilsang committed Dec 7, 2024
1 parent 5a557d0 commit 6ddd52a
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 10 deletions.
2 changes: 1 addition & 1 deletion e2e/__snapshots__/about.spec.ts/desktop/about.html

Large diffs are not rendered by default.

Binary file modified e2e/__snapshots__/about.spec.ts/desktop/about.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion e2e/__snapshots__/about.spec.ts/mobile/about.html

Large diffs are not rendered by default.

Binary file modified e2e/__snapshots__/about.spec.ts/mobile/about.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/features/about/work/data/woowabros/index.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import type { Company } from '../../models';
import { CompanyName, JobPosition } from '../../models';

import { TBD } from './projects';
import { CommerceAdminPlatform } from './projects';

const WoowaBros: Company = {
company: CompanyName.WoowaBros,
companyHref: 'https://www.linkedin.com/company/woowa-bros-/',
companyLogoUrl: '/images/logo/woowa-bros.webp',
workStartDate: 1724112000000, // 24.08.20
position: JobPosition.FE,
projectList: [TBD],
projectList: [CommerceAdminPlatform],
};

export default WoowaBros;
27 changes: 21 additions & 6 deletions src/features/about/work/data/woowabros/projects.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,30 @@
import type { Project } from '../../models';
import { ProjectName } from '../../models';
import { Section } from '../../shared/Body';
import { Paragraph, Section, Sentence } from '../../shared/Body';

export const TBD: Project = {
name: ProjectName.TBD,
tags: [],
export const CommerceAdminPlatform: Project = {
name: ProjectName.CommerceAdminPlatform,
tags: ['Vite', 'React18', 'pnpm'],
startDate: 1724112000000,
summary: `TBD`,
summary: `서로 다른 커머스 서비스 내 주문/배송/셀러/상품 영역에서 일관된 사용자 경험을 제공할 수 있는 어드민 플랫폼 개발`,
body: (
<>
<Section top>TBD</Section>
<Section top>
빌드 시스템 패키지 {'->'} 코드 쉐어링 전환
<Paragraph>
<Sentence value="빌드 시스템으로 구축되어 있는 모노레포 패키지를 코드 쉐어링으로 전환" />
<Sentence value="HMR 개선(10s -> 1s). 빌드 과정으로 인한 풀 리로딩 문제 해결. 이로써 상태 유지 가능" />
<Sentence value="폼 관리가 많은 어드민 특성상 상태 유지는 DX 향상에 중요한 요소" />
</Paragraph>
</Section>
<Section>
카탈로그, B마트, 커머스, 셀러 등 어드민 기능 개발
<Paragraph>
<Sentence value="속성 범위그룹 설정 개발" />
<Sentence value="상품카테고리 실시간 추천 기능 개발" />
<Sentence value="상품 일괄 변경 기능 개발" />
</Paragraph>
</Section>
</>
),
};
1 change: 1 addition & 0 deletions src/features/about/work/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export enum ProjectName {
MyBiskit = 'Mybiskit',
Blind = 'Blind',
Stove = 'Stove',
CommerceAdminPlatform = 'Commerce Admin Platform',
TBD = 'Coming Soon',
}

Expand Down

0 comments on commit 6ddd52a

Please sign in to comment.