feat: implement Ads Performance tab

- types.ts: Add conversions field to CombinedKPIs
- dataProcessor.ts: Populate conversions in mergeSalesAndAdsData
- AdsPerformance.tsx: New component with aggregated advertising metrics and detailed product table
- App.tsx: Add Ads view to switcher and render AdsPerformance component
- Icons.tsx: Added icon support for the new Ads tab
This commit is contained in:
Christian Vidal Wolf
2026-01-22 13:25:06 +01:00
parent 9357aed662
commit 18e003dd80
4 changed files with 267 additions and 1 deletions
+1
View File
@@ -170,6 +170,7 @@ export interface CombinedKPIs {
cost: number;
clicks: number;
impressions: number;
conversions: number;
salesOrganic: number;
unitsOrganic: number;