export interface TechStackInterface { extraClass?: string; props: PropsContent; } export interface PropsContent { header: Header; technologies: TechStacks[]; } export interface Header { title: string; titleColor: string; content: string; } export interface TechStacks { noteTitle: string; noteContent: string; noteImage: any; noteIcon: string; }