import { resume } from '@/data/resume' import { SectionLabel } from './SectionLabel' import { Reveal } from './Reveal' const statusConfig = { deployed: { label: 'deployed', color: 'text-terminal-green' }, shipped: { label: 'shipped', color: 'text-terminal-amber' }, wip: { label: 'wip', color: 'text-terminal-muted' }, } as const export function Projects() { return (
{resume.projects.map((project, i) => { const status = statusConfig[project.status] return (
{/* Top row */}
[{project.id}]

{project.title}

● {status.label} {project.href && ( )}
{/* Description */}

{project.description}

{/* Tech stack */}
{project.tech.map((t) => ( {t} ))}
{/* Left accent line on hover */}
) })}
) }