1
0

Init Commit

This commit is contained in:
2025-02-26 15:40:10 -06:00
commit 8ca7e1ce91
95 changed files with 14713 additions and 0 deletions

8
types/WorkEntry.ts Normal file
View File

@@ -0,0 +1,8 @@
export interface WorkEntry {
title: string
desc: string
coverImg: string
stack: string[]
links: {label: string; severity: string; link: string; icon?: string}[]
gallery: {itemImageSrc: string}[]
}