export type Organization = {
  id: string;
  createdAt: Date;
  name: string;
  slug: string;
  logo?: string | null | undefined;
};
