mirror of
https://github.com/theoludwig/theoludwig.git
synced 2025-10-11 17:06:21 +02:00
fix: add more details to tasks in Work experiences
This commit is contained in:
@@ -10,31 +10,34 @@ export const CurriculumVitaeInterests: React.FC<
|
||||
const t = useTranslations()
|
||||
|
||||
const interests = [
|
||||
t("curriculum-vitae.interests.open-source"),
|
||||
<strong key="open-source">
|
||||
{t("curriculum-vitae.interests.open-source")}
|
||||
</strong>,
|
||||
t.rich("curriculum-vitae.interests.fusey", {
|
||||
link: (children) => {
|
||||
return (
|
||||
<a href="https://fusey.gg" target="_blank">
|
||||
<a href="https://fusey.gg" target="_blank" className="font-semibold">
|
||||
{children}
|
||||
</a>
|
||||
)
|
||||
},
|
||||
strong: (children) => {
|
||||
return <strong>{children}</strong>
|
||||
},
|
||||
}),
|
||||
]
|
||||
|
||||
return (
|
||||
<CurriculumVitaeSection
|
||||
id="interests"
|
||||
title={t("home.interests.title")}
|
||||
title={t("curriculum-vitae.interests.title")}
|
||||
icon={<FaHeart size={24} />}
|
||||
>
|
||||
<ul className="list-unstyled m-0">
|
||||
{interests.map((interest, index) => {
|
||||
return (
|
||||
<li key={index} className="card card-nested">
|
||||
<p>
|
||||
<strong>{interest}</strong>
|
||||
</p>
|
||||
<li key={index} className="card card-nested max-w-2xl">
|
||||
<p>{interest}</p>
|
||||
</li>
|
||||
)
|
||||
})}
|
||||
|
Reference in New Issue
Block a user