1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-10-11 17:06:21 +02: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

@@ -10,9 +10,44 @@ export const CurriculumVitaeInterests: React.FC<
const t = useTranslations()
const interests = [
<strong key="open-source">
{t("curriculum-vitae.interests.open-source")}
</strong>,
t.rich("curriculum-vitae.interests.open-source", {
strong: (children) => {
return <strong>{children}</strong>
},
"link-github": (children) => {
return (
<a
href="https://github.com/theoludwig"
target="_blank"
className="font-semibold"
>
{children}
</a>
)
},
"link-leon": (children) => {
return (
<a
href="https://github.com/leon-ai/leon"
target="_blank"
className="font-semibold"
>
{children}
</a>
)
},
"link-markdownlint": (children) => {
return (
<a
href="https://www.npmjs.com/package/markdownlint-rule-relative-links"
target="_blank"
className="font-semibold"
>
{children}
</a>
)
},
}),
t.rich("curriculum-vitae.interests.fusey", {
link: (children) => {
return (