feat: initial commit, draft frontend

This commit is contained in:
2026-01-13 22:07:44 -08:00
commit 5a2bec37b9
41 changed files with 3260 additions and 0 deletions

7
src/lib/types/project.ts Normal file
View File

@@ -0,0 +1,7 @@
export type Project = {
id: number;
name: string;
thumbnail?: string;
description: string;
url?: string;
};