export namespace ICaseCard { export interface Category { title: string; link: string; } export interface Result { title: string; value: string; } export interface Post { logo: string; avatar: { png: string; webp: string; }; title: string; category: Category; industry: Category; results: Result[]; link: string; } }