import { cn } from '$shared/lib'; export interface Props { /** * Project year */ year: string; /** * Developer role on the project */ role: string; /** * Technology stack list */ stack: string[]; /** * Additional CSS classes */ className?: string; } /** * Sidebar metadata display for a project: year, role, and stack. */ export function ProjectMetadata({ year, role, stack, className }: Props) { return (
YEAR
{year}
ROLE
{role}
STACK
{stack.map((tech) => ({tech}
))}