'use client'; import Link from 'next/link'; import { useEffect } from 'react'; import { useGraphData } from '@/hooks/useGraphData'; import { GraphVisualization } from '@/components/graph/GraphVisualization'; import { useGraphStore } from '@/store/graph'; import { ArrowRight, Play } from 'lucide-react'; export function HeroSection() { useGraphData(); const data = useGraphStore((s) => s.data); return (
{/* Animated graph background */}
{data.nodes.length > 0 && }

Unlock Insights from Your Documents with{' '} Knowledge Graph AI

Build intelligent knowledge graphs from your documents. Query with natural language. Get graph-grounded answers with multi-hop reasoning.

Get Started Free Watch Demo
); }