Skip to content

Commit bd246d6

Browse files
committed
feat(timeline): add new experience items to the timeline component
fix(page): correct min-height class in main element chore(vscode): update settings to enable AI features Signed-off-by: walnuts1018 <r.juglans.1018@gmail.com>
1 parent ed1ff93 commit bd246d6

3 files changed

Lines changed: 15 additions & 3 deletions

File tree

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
"editor.codeActionsOnSave": {
44
"source.addMissingImports": "explicit",
55
"source.fixAll.eslint": "explicit"
6-
}
6+
},
7+
"chat.disableAIFeatures": false
78
}

src/app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export default function Home() {
3535
description: description,
3636
}}
3737
/>
38-
<main className="flex min-h-[100dvh] w-full justify-center">
38+
<main className="flex min-h-dvh w-full justify-center">
3939
<div className="flex h-full w-full flex-col items-center justify-start gap-8 px-6 md:w-10/12 md:px-0 lg:flex-row lg:items-start lg:justify-center">
4040
<div className="w-min-[24rem] lg:w-min-[20rem] 2xl:w-min-[24rem]">
4141
<Profile />

src/components/timeline/timeline.tsx

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function ExperienceTimelineItem({
6464
</div>
6565
{withConnector && (
6666
<div className="col-start-1 col-end-2 row-start-2 row-end-3 flex h-full w-full items-center justify-center">
67-
<span className="h-full w-[2px] rounded-full bg-[#bdbdbd]" />
67+
<span className="h-full w-0.5 rounded-full bg-[#bdbdbd]" />
6868
</div>
6969
)}
7070
<div className="font-Nunito col-start-2 col-end-3 row-start-1 row-end-3 flex flex-wrap items-start pt-[0.4rem] pl-2">
@@ -80,6 +80,17 @@ function ExperienceTimelineItem({
8080
export default function ExperienceTimeline() {
8181
return (
8282
<div className="font-Noto flex w-full flex-col justify-between">
83+
<ExperienceTimelineItem
84+
from={new Date("2026-04-01")}
85+
title="株式会社はてな アプリケーションエンジニア"
86+
href="https://hatena.co.jp/recruit"
87+
/>
88+
<ExperienceTimelineItem
89+
from={new Date("2025-04-01")}
90+
to={new Date("2026-03-31")}
91+
title="京都大学大学院情報学研究科 通信情報システムコース 大木研究室(知的通信網分野)"
92+
href="https://icn.cce.i.kyoto-u.ac.jp/"
93+
/>
8394
<ExperienceTimelineItem
8495
from={new Date("2024-9-6")}
8596
to={new Date("2024-9-20")}

0 commit comments

Comments
 (0)