feat: update ProjectModal and projectsData for enhanced project details and technology display
This commit is contained in:
@@ -12,4 +12,5 @@ export interface BlogPostProps {
|
||||
featured?: boolean;
|
||||
tags: string[];
|
||||
content: string;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -11,19 +11,21 @@ export interface ProjectProps {
|
||||
links: {
|
||||
github?: string;
|
||||
demo?: string;
|
||||
documentation?: string;
|
||||
};
|
||||
}
|
||||
|
||||
export interface ProjectDetails {
|
||||
descriptions: string[];
|
||||
startDate: string;
|
||||
endDate: string;
|
||||
descriptions?: string[];
|
||||
startDate?: string;
|
||||
endDate?: string;
|
||||
dateFormatted?: string;
|
||||
role: string;
|
||||
status: string;
|
||||
client: string;
|
||||
keyFeatures: string[];
|
||||
gallery: string[];
|
||||
role?: string;
|
||||
status?: string;
|
||||
client?: string;
|
||||
keyFeatures?: string[];
|
||||
gallery?: string[];
|
||||
fullTechStack?: FullTechStack[];
|
||||
}
|
||||
|
||||
export interface Category {
|
||||
@@ -37,3 +39,8 @@ export interface ProjectTech {
|
||||
name: string;
|
||||
icon: string;
|
||||
}
|
||||
|
||||
export interface FullTechStack {
|
||||
name: string;
|
||||
icons: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user