import { IconArrowNarrowRight } from '@tabler/icons-react'; interface ProjectCardProps { title: string; year: string; stack: string[]; description: string; outcome: string; } export default function ProjectCard({ title, year, stack, description, outcome }: ProjectCardProps) { return (

{year} — {stack.join(' · ')}

{description}

{outcome}

); }