export interface SpaceProps {
  name: string;
  id: string;
  title: string;
  emoji?: string;
  runtime: any;
  shortDescription?: string;
  likes: number;
  authorData: Author;
  colorFrom: string;
  colorTo: string;
  createdAt: string;
}

interface Author {
  name: string;
  username: string;
  fullName?: string;
  avatarUrl: string;
}