import { JSX } from 'preact' type ProjectCardProps = { id: string icon: string title: string summary: string tags: string[] state: 'complete' | 'progress' | 'stale' | 'pending' } export function ProjectCard( { id, icon, title, summary, tags, state }: ProjectCardProps, ) { return (