import Link from 'next/link'; import { IconArrowNarrowRight, IconExternalLink } from '@tabler/icons-react'; import { colors } from '@/constants'; interface ProjectCardProps { slug: string; title: string; year: string; stack: string[]; description: string; liveUrl: string; } export default function ProjectCard({ slug, title, year, stack, description, liveUrl }: ProjectCardProps) { return (

{title}

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

{description}

Live Demo
); }