diff --git a/components/content/ProjectCard.tsx b/components/content/ProjectCard.tsx new file mode 100644 index 0000000..f447bad --- /dev/null +++ b/components/content/ProjectCard.tsx @@ -0,0 +1,23 @@ +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}

+
+ ); +}