export interface User {
    _id?: string;
    name: string;
    email: string;
    sub: string;
    createdAt: string;
    projects: string[];
}
