export interface Iuser {
    clerkId: string,
    email: string,
    firstName?: string | null,
    lastName?: string | null
}