import { AppShell } from "@/components/AppShell"; import { mockNotes, mockWorkspaces } from "@/lib/mock-data"; export default function DashboardPage() { const recentNotes = mockNotes.slice(0, 3); return ( Scaffold milestone} >
Active workspaces
{mockWorkspaces.length}
Tracked notes
{mockNotes.length}
Pending review surfaces
2
Recent note activity
{recentNotes.map((note) => (
{note.title} {note.updatedBy}
{note.excerpt}
{note.tags.map((tag) => ( #{tag} ))}
))}
); }