From a0cc826c702a4d2cd4a222a0529fb0163a695d39 Mon Sep 17 00:00:00 2001 From: donny Date: Thu, 28 May 2026 11:04:41 -0700 Subject: [PATCH] feat: scaffold basic ProjectCard component --- components/content/ProjectCard.tsx | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 components/content/ProjectCard.tsx 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}

+
+ ); +}