"use server"; export interface Data { projects: { projectId: number, name: string, color: string, }[], timeEntries: { projectId: number, start: string, end: string, duration: number, // description: string, }[], }