Spaces:
Sleeping
Sleeping
fix: Correct SpaceBrowser component structure and remove outdated random space fetching logic
e303d00
export interface Space { | |
id: string; | |
name: string; | |
description: string; | |
likes: number; | |
author: string; | |
title: string, | |
emoji: string, | |
colorFrom: string, | |
colorTo: string, | |
pinned: boolean; | |
shortDescription?: string; | |
runtime: SpaceRuntime; | |
authorData: SpaceAuthorData; | |
} | |
export interface SpaceAuthorData { | |
avatarUrl: string; | |
fullname: string | |
name: string; | |
} | |
export interface SpaceRuntime { | |
stage: string; | |
hardware: { | |
current: string; | |
}; | |
} | |