| 'use client'; | |
| import CandidateTable from '@/components/dashboard/candidates-table'; | |
| import { ChartsSection } from '@/components/dashboard/charts-section'; | |
| import { MetricsRow } from '@/components/dashboard/metrics-row'; | |
| export default function DashboardPage() { | |
| return ( | |
| <div> | |
| <MetricsRow /> | |
| <ChartsSection /> | |
| <CandidateTable /> | |
| </div> | |
| ); | |
| } | |