-
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
4 changed files
with
61 additions
and
24 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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
import * as React from "react"; | ||
import { row, rowLeft, rowRight } from "./style.module.css"; | ||
|
||
export const Education = () => { | ||
return ( | ||
<> | ||
<h2>Education</h2> | ||
<div className={row}> | ||
<div className={rowLeft}> | ||
<h3>오픈소스 컨트리뷰션 아카데미 수료</h3> | ||
</div> | ||
<div className={rowRight}> | ||
<ul> | ||
<li>Git 활용 및 DevOps / MLOps 체험형 수료 (2023.7~2023.8)</li> | ||
<li>Githru 오픈소스 참여형 (2024.7 ~)</li> | ||
</ul> | ||
</div> | ||
</div> | ||
<div className={row}> | ||
<div className={rowLeft}> | ||
<h3>현대아이티앤이 채용확정형 </h3> | ||
</div> | ||
<div className={rowRight}> | ||
<ul> | ||
<li> | ||
웹 개발 전반(vue, spring framework, oracle/java) (2021.7~2021.12) | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
<div className={row}> | ||
<div className={rowLeft}> | ||
<h3>중앙대학교</h3> | ||
</div> | ||
<div className={rowRight}> | ||
<ul> | ||
<li> | ||
국어국문학과 졸업 (2017.3~2022.2) | ||
<br /> 컴퓨터공학과 복수전공 | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</> | ||
); | ||
}; |
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,12 @@ | ||
.row { | ||
display: flex; | ||
} | ||
.row-left { | ||
flex-basis: 16rem; | ||
flex-shrink: 0; | ||
padding-right: 12px; | ||
} | ||
|
||
.row-right { | ||
flex-grow: 1; | ||
} |
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,5 +1,5 @@ | ||
.row { | ||
display: "flex"; | ||
display: flex; | ||
} | ||
|
||
/* flexBasis: "16rem", flexShrink: 0, paddingRight: "12px" */ | ||
|
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