export type Company = {
  id: string;
  name: string;
  email: string;
  phone: string;
  address: string;
  logo?: string | null;
};