import { Network, GitBranch, Search, MousePointer2, Users, Zap } from 'lucide-react'; const FEATURES = [ { icon: Network, title: 'Graph-Powered Retrieval', desc: 'Goes beyond vector search to understand relationships and context between entities.', }, { icon: GitBranch, title: 'Multi-Hop Reasoning', desc: 'Follow chains of relationships to answer complex, multi-step questions.', }, { icon: Search, title: 'Hybrid Search', desc: 'Combine graph traversal with vector similarity for the best results.', }, { icon: MousePointer2, title: 'Interactive Visualization', desc: 'Explore your knowledge graph with zoom, pan, and click-to-inspect nodes.', }, { icon: Users, title: 'Community Detection', desc: 'Auto-discover thematic clusters and get per-community summaries.', }, { icon: Zap, title: 'Real-time Processing', desc: 'Watch your document transform into a structured graph in real-time.', }, ]; export function FeaturesSection() { return (

Everything you need to understand your documents

{FEATURES.map((f) => { const Icon = f.icon; return (

{f.title}

{f.desc}

); })}
); }