Feat: Ajout quantity sur les ressources +fix page accueil

This commit is contained in:
Amaël Kesteman
2025-12-09 10:49:31 +01:00
parent 5feb75a0c7
commit 9bbc10ef84
3 changed files with 6 additions and 4 deletions

View File

@@ -6,6 +6,8 @@ export type Ressource = {
name: string;
type: string;
Image: string;
quantity: number;
available_quantity: number;
};
export async function getRessources(): Promise<Ressource[]> {