project updates and blog

This commit is contained in:
Nicholas Orlowsky 2023-03-20 18:06:26 -05:00
parent 261a4fcacd
commit dec88e2842
12 changed files with 344 additions and 76 deletions

View file

@ -0,0 +1,9 @@
export default interface ProjectCardProps {
title: string,
description: string,
shortDescription: string,
techUsed: string[],
linkTitle?: string,
link?: string,
imageUrl: string
}