--- import type { Locale } from '@i18n/locales'; import { useDict } from '@i18n/t'; import { homeAnchor } from '@i18n/slugMap'; import { getSkills } from '@lib/content'; import SectionLabel from '@components/ui/SectionLabel.astro'; import Chip from '@components/ui/Chip.astro'; interface Props { locale: Locale; } const { locale } = Astro.props; const d = useDict(locale); const groups = getSkills(locale); const num = ['01', '02', '03']; ---

{d.home.skillsHeading}

{d.home.skillsIntro}

{ groups.map((group, i) => (

{num[i]} — {group.title}

{group.context}

    {group.skills.map((s) => (
  • ))}
)) }