project init
This commit is contained in:
23
frontend/lib/types.ts
Normal file
23
frontend/lib/types.ts
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user