Files
trading_bot_v3/app/page.js
mindesbunister 32b1c1a54d Clean up homepage: remove hero section and quick action icons
- 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
2025-07-17 11:33:10 +02:00

13 lines
206 B
JavaScript

'use client'
import StatusOverview from '../components/StatusOverview.js'
export default function HomePage() {
return (
<div>
{/* Status Overview */}
<StatusOverview />
</div>
)
}