Files
trading_bot_v3/app/page.js
mindesbunister fba41aaf78 Restore improved layout and coin icons from development branch
- Restore clean homepage with only StatusOverview component
- Restore improved StatusOverview with CoinGecko coin icons
- Restore unified layout with gradient cards instead of fragmented sections
2025-07-17 11:55:09 +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>
)
}