- Restore clean homepage with only StatusOverview component - Restore improved StatusOverview with CoinGecko coin icons - Restore unified layout with gradient cards instead of fragmented sections
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>
|
|
)
|
|
}
|