Revived the page! He's baaaaack

This commit is contained in:
2026-01-27 10:01:41 -05:00
parent 7c7cbef3f3
commit 67562f56aa
9 changed files with 469 additions and 95 deletions

7
shared/types/units.ts Normal file
View File

@@ -0,0 +1,7 @@
export interface Unit {
id: number;
name: string;
description?: string;
active: boolean;
color?: string;
}