export interface Skill { name: string; } export interface Job { id: number; position: string; company: string; still_working: boolean; start_date: string; end_date: string | null; technologies: string[]; } export interface Project { id: number; name: string; short_description: string; description: string; technologies: string[]; thumbnails: string[]; category: 'Web' | 'Mobile' | 'Desktop' | 'Api' | 'Game'; github_url?: string | null; visit_url?: string | null; download_url?: string | null; }