diff --git a/src/app/investor/investments/[id]/page.tsx b/src/app/investor/investments/[id]/page.tsx index 0ae2825..0f5c7d4 100644 --- a/src/app/investor/investments/[id]/page.tsx +++ b/src/app/investor/investments/[id]/page.tsx @@ -97,7 +97,7 @@ export default function InvestorInvestmentDetailPage({ params }: { params: Promi return (
-
+
@@ -156,26 +156,38 @@ export default function InvestorInvestmentDetailPage({ params }: { params: Promi
- +
-

ROI

+

Total Bikes

-

{investment.expectedRoi}%

+

{demoBikes.length}

+
- {['overview', 'bikes', 'transactions', 'statement'].map((tab) => ( + {[ + { key: 'overview', label: 'Overview', count: null }, + { key: 'bikes', label: 'Bikes', count: demoBikes.length }, + + { key: 'transactions', label: 'Transactions', count: demoTransactions.length }, + { key: 'statement', label: 'Statement', count: null }, + ].map((tab) => ( ))}