import { ArrowRight, BarChart3, BookOpen, FileText, PlayCircle } from "lucide-react"; import type { AppMenuKey } from "./AppNavigation"; interface HomeDashboardProps { hasAnalyses: boolean; onNavigate: (menu: AppMenuKey) => void; } export function HomeDashboard({ hasAnalyses, onNavigate }: HomeDashboardProps) { return (

Workspace guide

Start from knowledge, then run the analysis agent.

Data Eyond needs prepared knowledge before the agent can answer with useful context. Set up documents or database connections first, then create an analysis and generate versioned reports from the result.

1. Setup Knowledge

Upload documents, process them, connect databases, ingest schemas, and rebuild the catalog.

2. Create Analysis

Define objective, business questions, and bind the sources that the AI agent should use.

3. Chat and Report

Ask questions, inspect traceability inside AI answers, then generate report versions from the sidebar.

Product flow simulation

A quick preview of the expected workspace sequence.

Knowledge

Processed PDF, CSV, and database schema are ready.

Analysis Agent

Business questions are scoped to selected sources.

Report

Versioned report previews stay beside the conversation.

{!hasAnalyses && (
No saved analysis detected yet. Start with Knowledge, then create your first analysis in Analysis Agent.
)}
); }