HomeSummaryResponseDto: {
    banners: {
        createdAt: string;
        description: string | null;
        id: string;
        imageUrl: string;
        linkUrl: string | null;
        order: number;
        publishEndAt: string | null;
        publishStartAt: string | null;
        status: "published" | "archived";
        subtitle: string | null;
        title: string;
    }[];
    profile: {
        displayName: string;
        email: string | null;
        roleName: string;
        tenantName: string;
    };
    spaceCount: number;
    spaces: {
        id: string;
        name: string;
        role: "ADMIN" | "PARTICIPANT";
    }[];
}