/** * Dashboard Page * * Main authenticated homepage showing: * - Quick stats overview * - Recent projects * - Pending approvals * - Real-time activity feed * * @see Issue #53 */ import { Metadata } from 'next'; import { Dashboard } from '@/components/dashboard'; export const metadata: Metadata = { title: 'Dashboard', description: 'Overview of your projects, agents, and activity', }; export default function DashboardPage() { return ; }