Skip to content

Commit 4e4c969

Browse files
committed
Add employments at Google
1 parent a6f6af1 commit 4e4c969

3 files changed

Lines changed: 31 additions & 0 deletions

File tree

src/components/main/MainEmployments.vue

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,30 @@
44
<div class="header" style="margin-top: 6rem">
55
{{ $t("main.employments.header") }}
66
</div>
7+
<i18n-t
8+
class="sub-header detail"
9+
keypath="main.employments.google.header"
10+
tag="div"
11+
>
12+
<template #duration>
13+
<span class="detail-value">
14+
{{ $t("main.employments.google.duration") }}
15+
</span>
16+
</template>
17+
</i18n-t>
18+
<ul>
19+
<li
20+
v-for="item in $tm('main.employments.google.details')"
21+
class="detail"
22+
:key="item"
23+
>
24+
{{ $rt(item) }}
25+
</li>
26+
</ul>
727
<i18n-t
828
class="sub-header detail"
929
keypath="main.employments.moloco.header"
30+
style="margin-top: 2rem"
1031
tag="div"
1132
>
1233
<template #duration>

src/i18n/en.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ export default {
2222
main: {
2323
employments: {
2424
header: "Employments",
25+
google: {
26+
header: "Google, Software Engineer{duration}",
27+
duration: "(2025.04 - )",
28+
details: ["Platform & Devices / Pixel Mobile Wireless"],
29+
},
2530
moloco: {
2631
header: "Moloco, Software Engineer Intern{duration}",
2732
duration: "(2024.11 - 2025.02)",

src/i18n/ko.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ export default {
2222
main: {
2323
employments: {
2424
header: "경력 사항",
25+
google: {
26+
header: "구글, 소프트웨어 엔지니어{duration}",
27+
duration: "(2025.04 - )",
28+
details: ["Platform & Devices / Pixel Mobile Wireless"],
29+
},
2530
moloco: {
2631
header: "몰로코, 소프트웨어 엔지니어 인턴{duration}",
2732
duration: "(2024.11 - 2025.02)",

0 commit comments

Comments
 (0)