project init

This commit is contained in:
2025-12-01 02:29:08 +01:00
commit 78a0f6c646
106 changed files with 13132 additions and 0 deletions

23
frontend/lib/types.ts Normal file
View File

@@ -0,0 +1,23 @@
export interface Project {
id: string
name: string
role: string
description: string
highlights: string[]
stack: string[]
website: string | null
github: string | null
featured: boolean
}
export interface StackCategory {
id: string
title: string
items: string[]
}
export interface User {
id: string
email: string
name: string
}