feat: add project page with mock data and update project type to include thumbnail

This commit is contained in:
Maze Winther
2025-06-29 21:32:51 +02:00
parent 3bc00f8e40
commit bfba482098
5 changed files with 227 additions and 0 deletions

View File

@ -17,6 +17,7 @@ export const useProjectStore = create<ProjectStore>((set) => ({
const newProject: TProject = {
id: crypto.randomUUID(),
name,
thumbnail: "",
createdAt: new Date(),
updatedAt: new Date(),
};