import Link from 'next/link' type ProjectCardProps = { title: string description: string stack: string[] href?: string } export default function ProjectCard({ title, description, stack, href }: ProjectCardProps) { return (

{title}

{description}

{href && ( View project )}
) }