diff --git a/src/App.jsx b/src/App.jsx index 7c5a2212..e77828bf 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -488,11 +488,12 @@ export default function App() { */} {/* Card Last News (taille standard card) */} - Forex - +
+ Curve + +
{news.map((n, idx) => { - const Icon = n.icon; return (
- {n.type}
@@ -510,7 +510,9 @@ export default function App() { )}
- {n.date} +
+ {n.date} +
); })} @@ -532,6 +534,11 @@ export default function App() { {/* Cards KPI */} {cards.map((card) => { const Icon = card.icon; + const bar_data = [ + { label: "Invoiced", value: card.amountInvoiced }, + { label: "30 days", value: card.amount30Days }, + { label: "60 days", value: card.amount60Days }, + ]; return ( {card.trend}
- + {/* + /> */}