feat: add MKT tab and integrate profitability dashboard

This commit is contained in:
Christian Vidal Wolf
2026-03-11 09:27:57 +01:00
parent 0e1457bd3d
commit 455cd8ed08
10 changed files with 798 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
export interface Product {
id: string;
asin: string;
sku: string;
name: string;
image: string;
category: string;
brand: string;
grossSales: number;
unitsSold: number;
ppcSpend: number;
deals: number;
promos: number;
chargebacks: number;
chargebacksPrevMonth: number;
cogs: number;
}