Skip to content

Commit

Permalink
fix: 년차 더 깔끔하게 보여주도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Coalery committed Jun 24, 2024
1 parent a304252 commit 625a13a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 1 addition & 3 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@ import ActivityContainer from "@lery/containers/ActivityContainer";
import ActivityItemContainer from "@lery/containers/ActivityItemContainer";

function WorkSection() {
const years = new Date().getFullYear() - 2022 + 1;

return (
<ActivityContainer title={`Work: ${years}년차`}>
<ActivityContainer title="Work">
<ActivityItemContainer
title="모두싸인 SaaS 플랫폼팀"
subtitle="백엔드 엔지니어, 2023.08 ~ 현재"
Expand Down
6 changes: 4 additions & 2 deletions components/Header/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import Link from "next/link";

export default function Header() {
const years = new Date().getFullYear() - 2022 + 1;

return (
<header>
<div>
Expand All @@ -9,9 +11,9 @@ export default function Header() {
</div>
<div>
<p className="text-lg">
안녕하세요,
{years}년차 소프트웨어 엔지니어입니다.
<br />
주로 백엔드를 구축하고 있습니다.
주로 백엔드를 개발하고 있습니다.
</p>
<p className="text-lg">
보이지 않는 곳에서 동작하는 것들에 대해 알아보는 걸 좋아합니다.
Expand Down

0 comments on commit 625a13a

Please sign in to comment.