import { GIT_REPO_LINK } from "@repo/utils/constants" import { useTranslations } from "next-intl" import { FaGit, FaMicrochip } from "react-icons/fa" import { Link } from "../../Design/Link/Link.tsx" import { Section, SectionContent, SectionTitle, } from "../../Layout/Section/Section.tsx" import { InterestItem } from "./InterestItem.tsx" export interface InterestsProps {} export const Interests: React.FC = () => { const t = useTranslations() const items = [ { id: "code", title: t("home.interests.code.title"), description: t.rich("home.interests.code.description", { br: () => { return
}, strong: (children) => { return {children} }, "abbr-ux": (children) => { return {children} }, }), Icon: FaMicrochip, }, { id: "open-source", title: t("home.interests.open-source.title"), description: t.rich("home.interests.open-source.description", { br: () => { return
}, strong: (children) => { return {children} }, "github-link": (children) => { return ( {children} ) }, }), Icon: FaGit, }, ] as const return (
{t("home.interests.title")}
{items.map((item) => { return ( ) })}
    {items.map((item) => { return (
  • ) })}
) }