fixing data fetching from external API, spesifically in achievement and projects categories and name of team member

This commit is contained in:
2026-06-04 15:47:47 +07:00
parent b8099c1dca
commit b5fba9238e
8 changed files with 195 additions and 82 deletions
+4 -1
View File
@@ -12,6 +12,7 @@ export interface Achievement {
generation: string;
image: string;
avatar: string;
members?: Array<{nama: string; angkatan?: number}>;
}
export interface Project {
@@ -20,10 +21,12 @@ export interface Project {
studentName: string;
nim?: string;
year: number;
category: string;
category: string[];
description: string;
image: string;
link?: string;
catatan?: string;
members?: Array<{nama: string; nim?: string}>;
}
/*