- Replace complex page.js with simple version that delegates to StatusOverview - Eliminates hydration errors from Date.now() usage - Prevents undefined property access errors (aiAnalytics.overview.totalLearningRecords) - Overview page now loads correctly without 'Something went wrong!' error - All data fetching and error handling properly managed by StatusOverview component
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>
|
|
)
|
|
}
|