interface ProjectCardProps { title: string description: string year: string tech: string[] links?: { live?: string github?: string } } export function ProjectCard({ title, description, year, tech, links }: ProjectCardProps) { return (

{title}

{year}
{links && (
{links.github && ( )} {links.live && ( )}
)}

{description}

{tech.map((techItem) => ( {techItem} ))}
) }