> ## Documentation Index
> Fetch the complete documentation index at: https://docs.davia.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

> Davia is a workspace composed of interactive documents. Pages that mix text, data, whiteboards, and AI-generated components.

export const ChatIcon = () => {
  return <div className="inline-flex items-center gap-2 px-2 py-1 text-sm text-zinc-600 dark:text-zinc-400">
      <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" className="inline drop-shadow-sm" style={{
    filter: "drop-shadow(0 0 2px rgba(0,0,0,0.15)) drop-shadow(0 1px 3px rgba(0,0,0,0.1))"
  }}>
        <path d="M7.9 20A9 9 0 1 0 4 16.1L2 22Z" />
      </svg>
      <span className="font-medium">Chat</span>
    </div>;
};

## Davia pages are "living documents"

They follow a unique architecture combining editable content with interactive components.
Each page is self-contained: it holds your content, your interactive components, whiteboards, and your data. Think of it as **a document you can read, edit, and interact with**.

This is a new authoring paradigm: code is generated and compiled on the fly as you work. Describe what you need and the page can become anything, from custom UI to logic and data flows, without fixed blocks or rigid templates.

## A single hub for creating, using, and sharing interactive docs

### All your documents in one workspace

<Card>
  <Columns cols={2}>
    <img src="https://mintcdn.com/davia-c87a72f8/i4DFLmyYFxthawI9/images/workspace-filesystem.png?fit=max&auto=format&n=i4DFLmyYFxthawI9&q=85&s=9e69984e95b8344116636868ebc3b101" alt="Workspace" className="rounded-lg" width="462" height="519" data-path="images/workspace-filesystem.png" />

    <Card title="On the left side of the screen your workspace">
      <br />

      Whether you have a page with multiple components or just notes, each one of
      them is accessible in the tree on the left side of your screen. <br />
      <br /> Your can create new pages, insert subpages in a current one or
      rename it. All in all, your **workspace behaves like a filesystem**.
    </Card>
  </Columns>
</Card>

All your pages are aggregated in your **workspace** which serves as your **internal document hub**.

### Create, edit documents and navigate your workspace using the agent

<Info>
  **In the cloud:** Davia's assistant can create or edit your pages through
  natural language. Access in right sidepane with command ⌘K or by clicking on
  the <ChatIcon /> icon on the upper right.
</Info>

<Info>
  **Locally:** Use your coding agent to create and edit pages. Simply describe
  what you want, and it will build it for you.
</Info>
