1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-10-11 17:06:21 +02:00

fix: update Curriculum Vitae + add Fusey interest

This commit is contained in:
2025-08-31 20:38:14 +02:00
parent 39ef3e80ce
commit b3140dd977
8 changed files with 32 additions and 55 deletions

View File

@@ -11,7 +11,15 @@ export const CurriculumVitaeInterests: React.FC<
const interests = [
t("curriculum-vitae.interests.open-source"),
t("curriculum-vitae.interests.high-tech"),
t.rich("curriculum-vitae.interests.fusey", {
link: (children) => {
return (
<a href="https://fusey.gg" target="_blank">
{children}
</a>
)
},
}),
]
return (
@@ -21,9 +29,9 @@ export const CurriculumVitaeInterests: React.FC<
icon={<FaHeart size={24} />}
>
<ul className="list-unstyled m-0">
{interests.map((interest) => {
{interests.map((interest, index) => {
return (
<li key={interest} className="card card-nested">
<li key={index} className="card card-nested">
<p>
<strong>{interest}</strong>
</p>