import { useTranslations } from "next-intl"
import { FaHeart } from "react-icons/fa"
import { CurriculumVitaeSection } from "./CurriculumVitaeSection.tsx"
export interface CurriculumVitaeInterestsProps {}
export const CurriculumVitaeInterests: React.FC<
CurriculumVitaeInterestsProps
> = () => {
const t = useTranslations()
const interests = [
t.rich("curriculum-vitae.interests.open-source", {
strong: (children) => {
return {children}
},
"link-github": (children) => {
return (
{children}
)
},
"link-leon": (children) => {
return (
{children}
)
},
"link-markdownlint": (children) => {
return (
{children}
)
},
}),
t.rich("curriculum-vitae.interests.fusey", {
link: (children) => {
return (
{children}
)
},
strong: (children) => {
return {children}
},
}),
]
return (
{interest}