This commit is contained in:
2025-11-25 16:26:54 -05:00
commit 1c07310c44
114 changed files with 17175 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
export type CategoryId =
| "lower"
| "upper"
| "barrel"
| "handguard"
| "stock"
| "optic";
export interface Category {
id: CategoryId;
name: string;
description?: string;
}
export interface Part {
id: string;
name: string;
brand: string;
categoryId: CategoryId;
price: number;
affiliateUrl: string;
imageUrl?: string;
notes?: string;
}