- Remove 'AI Trading Dashboard' title and description text - Remove grid of quick action cards (AI Analysis, Trading, etc.) - Keep only StatusOverview component for cleaner interface - Update .github/copilot-instructions.md with comprehensive AI agent guidance
13 lines
206 B
JavaScript
13 lines
206 B
JavaScript
'use client'
|
|
|
|
import StatusOverview from '../components/StatusOverview.js'
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<div>
|
|
{/* Status Overview */}
|
|
<StatusOverview />
|
|
</div>
|
|
)
|
|
}
|