20 lines
646 B
TypeScript
20 lines
646 B
TypeScript
import { DashboardActivity, DashboardStats, PortfolioTable } from './components';
|
|
|
|
export function DashboardPage() {
|
|
return (
|
|
<div className="flex flex-col h-full space-y-6">
|
|
<div className="flex-shrink-0">
|
|
<h1 className="text-lg font-bold text-text-primary mb-2">Welcome to Stock Bot Dashboard</h1>
|
|
<p className="text-text-secondary mb-6 text-sm">
|
|
Monitor your trading performance, manage portfolios, and analyze market data.
|
|
</p>
|
|
<DashboardStats />
|
|
<DashboardActivity />
|
|
</div>
|
|
|
|
<div className="flex-1 min-h-0">
|
|
<PortfolioTable />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|