import { Metadata } from 'next'; import { MindmapViewer } from '@/components/mindmap'; export const metadata: Metadata = { title: 'Mindmap | Mosaic', description: 'Knowledge graph visualization', }; /** * Mindmap page - Interactive knowledge graph visualization * * Displays an interactive mindmap/knowledge graph using ReactFlow, * with support for multiple node types (concepts, tasks, ideas, projects) * and relationship visualization. */ export default function MindmapPage() { return (

Knowledge Graph

Explore and manage your knowledge network

); }