Skip to content

Commit

Permalink
Add career in Danggn Market
Browse files Browse the repository at this point in the history
  • Loading branch information
nnnlog committed Aug 5, 2024
1 parent 9c4311e commit 587867b
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/components/main/MainCareer.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<script lang="ts" setup></script>

<template>
<div class="header" style="margin-top: 6rem">
{{ $t("main.career.header") }}
</div>
<i18n-t
class="sub-header detail"
keypath="main.career.danggn.header"
tag="div"
>
<template #duration>
<span class="detail-value">
{{ $t("main.career.danggn.duration") }}
</span>
</template>
</i18n-t>
<ul>
<li class="detail semi-bold">{{ $t("main.career.danggn.tbd") }}</li>
</ul>
</template>
8 changes: 8 additions & 0 deletions src/i18n/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@ export default {
back: "Go back",
},
main: {
career: {
header: "Career",
danggn: {
header: "Danggn Market, Software Engineer Intern (Backend){duration}",
duration: "(2024.08 ~ 2024.11)",
tbd: "TBD",
},
},
education: {
header: "Education",
bachelor: {
Expand Down
8 changes: 8 additions & 0 deletions src/i18n/ko.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@ export default {
back: "돌아가기",
},
main: {
career: {
header: "경력",
danggn: {
header: "당근마켓, 소프트웨어 엔지니어 인턴 (백엔드){duration}",
duration: "(2024.08 ~ 2024.11)",
tbd: "추가 예정",
},
},
education: {
header: "학력",
bachelor: {
Expand Down
2 changes: 2 additions & 0 deletions src/views/MainView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<section class="content-hr bottom"></section>
<section class="content-main">
<MainInformation></MainInformation>
<MainCareer></MainCareer>
<MainExperience></MainExperience>
<MainEducation></MainEducation>
<MainProjects></MainProjects>
Expand All @@ -13,4 +14,5 @@ import MainInformation from "@/components/main/MainInformation.vue";
import MainExperience from "@/components/main/MainExperience.vue";
import MainEducation from "@/components/main/MainEducation.vue";
import MainProjects from "@/components/main/MainProjects.vue";
import MainCareer from "@/components/main/MainCareer.vue";
</script>

0 comments on commit 587867b

Please sign in to comment.