interface Project { title: string description: string tech: string[] links?: { live?: string github?: string } } interface WorkExperienceCardProps { year: string role: string company: string description: string tech: string[] projects?: Project[] } export function WorkExperienceCard({ year, role, company, description, tech, projects }: WorkExperienceCardProps) { return (
{description}