-
Notifications
You must be signed in to change notification settings - Fork 0
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
7 changed files
with
26 additions
and
10 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,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; |
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,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> | ||
</> | ||
), | ||
}; |
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