first commit

This commit is contained in:
2025-07-12 14:17:55 +02:00
commit f74eb98414
21 changed files with 8751 additions and 0 deletions

5
types/Card.ts Normal file
View File

@@ -0,0 +1,5 @@
export type Card = {
id: number;
url: string;
name: string;
};