import { Wallet, TrendingUp, Bike, DollarSign, Calendar, Download, ArrowUpRight } from 'lucide-react'; import { investors, bikes } from '@/data/mockData'; const investor = investors[0]; const investorBikes = bikes.filter(b => b.investorId === investor?.id); export default function InvestorPortfolioPage() { return (

My Portfolio

Track your investments

Invested

৳{investor.totalInvested.toLocaleString()}

Earnings

৳{investor.totalEarnings.toLocaleString()}

+2.3%
Active Bikes

{investor.activeBikes}

ROI

{investor.roi}%

My Bikes

{investorBikes.map(bike => ( ))}
Bike Plate Location Status Earnings
{bike.model}
{bike.plateNumber} {bike.location} {bike.status} ৳2,500
); }