import Link from "next/link"; import { AppShell } from "@/components/AppShell"; import { mockNotes, mockSavedViews } from "@/lib/mock-data"; export default function SearchPage() { return ( Dense retrieval shell} >
workspace:all status:active source:manual+agent matched:title+tags
{mockNotes.map((note) => (
{note.title} {note.excerpt}
{note.status} {note.updatedBy} {note.workspaceId.replace("workspace-", "")}
{note.tags.map((tag) => ( #{tag} ))}
))}
); }