1
0
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-12-10 23:42:37 +01:00

fix: update Curriculum Vitae

This commit is contained in:
2025-09-22 19:29:02 +02:00
parent 92eca82127
commit eceeca8b69
8 changed files with 162 additions and 49 deletions

View File

@@ -23,7 +23,11 @@ export const CurriculumVitaeSkills: React.FC<
}),
{
category: "others",
skillNames: [t("locales.en-US"), t("home.skills.driving-license")],
skillNames: [
t("fr-FR-main"),
t("locales.en-US"),
t("home.skills.driving-license"),
],
},
] as const
@@ -45,6 +49,23 @@ export const CurriculumVitaeSkills: React.FC<
return (
<p key={skillName} className="label label-keyword">
{skillName}
{skillName === "Rust"
? t.rich("home.skills.rust-advent-of-code", {
"link-aoc": (children) => {
return (
<a
href="https://github.com/theoludwig/advent_of_code"
target="_blank"
className="no-underline"
>
{children}
</a>
)
},
})
: skillName === "Go"
? t("home.skills.go-basics")
: ""}
</p>
)
})}