import { notFound } from "next/navigation"; import { AppShell } from "@/components/AppShell"; import { NoteEditor } from "@/components/NoteEditor"; import { MetadataPanel } from "@/components/MetadataPanel"; import { LinkedNotesPanel } from "@/components/LinkedNotesPanel"; import { TaskReviewPanel } from "@/components/TaskReviewPanel"; import { ArtifactPanel } from "@/components/ArtifactPanel"; import { AgentTimeline } from "@/components/AgentTimeline"; import { getNoteById } from "@/lib/mock-data"; import { mockAgentTimeline } from "@/lib/review-data"; export default async function NoteDetailPage({ params, }: { params: Promise<{ noteId: string }>; }) { const { noteId } = await params; const note = getNoteById(noteId); if (!note) { notFound(); } return ( Review: {note.metadata.reviewState}} >
); }