import { useTranslations } from "next-intl" import { Section, SectionTitle } from "../../Layout/Section/Section" import { SkillItem } from "./SkillItem" import { SkillsSection } from "./SkillsSection" import { SKILL_CATEGORIES, SKILL_NAMES_BY_CATEGORY } from "./skills" export interface SkillsProps {} export const Skills: React.FC = () => { const t = useTranslations() return (
{t("home.skills.title")} {SKILL_CATEGORIES.map((category) => { const skillNames = SKILL_NAMES_BY_CATEGORY[category] return ( {skillNames.map((skillName) => { return })} ) })}
) }