Files
local/frontend/lib/types.ts
2025-12-01 02:29:08 +01:00

24 lines
358 B
TypeScript

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
}