/** * Component types module * Contains type definitions for UI components */ import type { Lang } from './i18n'; /** * Skill item interface */ export interface SkillItem { name: string; icon: string; color: string; } /** * Skill section component props */ export interface SkillSectionProps { title: string; skills: SkillItem[]; }