convexsol_stage/interfaces/techStack.interface.ts
2025-12-02 11:02:00 +05:30

22 lines
388 B
TypeScript

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;
}