diff --git a/apps/docs/docs.json b/apps/docs/docs.json index 21b970fa..865e1977 100644 --- a/apps/docs/docs.json +++ b/apps/docs/docs.json @@ -1,45 +1,91 @@ { - "$schema": "https://mintlify.com/schema/docs.schema.json", - "name": "RowBoat Docs", + "$schema": "https://mintlify.com/docs.json", "theme": "mint", + "name": "Rowboat", + "description": "Rowboat is an open-source platform for building multi-agent systems. It helps you orchestrate tools, RAG, memory, and deployable agents with ease.", "colors": { - "primary": "#6366f1" + "primary": "#6366F1", + "light": "#F3F4F6", + "dark": "#111827" }, "navigation": { - "groups": [ + "anchors": [ { - "group": "Getting Started", - "pages": ["docs/setup.md"] - }, - { - "group": "Overview", - "pages": ["docs/index.md", "docs/license.md"] - }, - { - "group": "Building in Studio", - "pages": [ - "docs/create_agents.md", - "docs/playground.md", - "docs/add_tools.md", - "docs/update_agents.md", - "docs/using_rag.md" + "anchor": "Documentation", + "icon": "book-open", + "tabs": [ + { + "tab": "Docs", + "groups": [ + { + "group": "Getting Started", + "icon": "rocket", + "pages": ["docs/setup"] + }, + { + "group": "Overview", + "icon": "info-circle", + "pages": ["docs/index", "docs/license"] + }, + { + "group": "Building in Studio", + "icon": "toolbox", + "pages": [ + "docs/create_agents", + "docs/playground", + "docs/add_tools", + "docs/update_agents", + "docs/using_rag" + ] + }, + { + "group": "API & SDK", + "icon": "code", + "pages": ["docs/using_the_api", "docs/using_the_sdk"] + }, + { + "group": "Concepts", + "icon": "lightbulb", + "pages": ["docs/agents", "docs/tools", "docs/prompts"] + } + ] + } ] }, { - "group": "API & SDK", - "pages": [ - "docs/using_the_api.md", - "docs/using_the_sdk.md" - ] + "anchor": "Website", + "href": "https://www.rowboatlabs.com", + "icon": "window" }, { - "group": "Concepts", - "pages": [ - "docs/agents.md", - "docs/tools.md", - "docs/prompts.md" - ] + "anchor": "GitHub", + "href": "https://github.com/rowboatlabs/rowboat", + "icon": "github" + }, + { + "anchor": "Discord", + "href": "https://discord.gg/YOUR_INVITE", + "icon": "discord" } ] + }, + "background": { + "color": { + "light": "#FFFFFF", + "dark": "#0F172A" + } + }, + "navbar": { + "primary": { + "type": "button", + "label": "Try Rowboat", + "href": "https://app.rowboatlabs.com" + } + }, + "footer": { + "socials": { + "github": "https://github.com/rowboatlabs/rowboat", + "linkedin": "https://www.linkedin.com/company/rowboat-labs" + } } - } + } \ No newline at end of file diff --git a/apps/docs/docs/add_tools.md b/apps/docs/docs/add_tools.mdx similarity index 100% rename from apps/docs/docs/add_tools.md rename to apps/docs/docs/add_tools.mdx diff --git a/apps/docs/docs/agents.md b/apps/docs/docs/agents.mdx similarity index 100% rename from apps/docs/docs/agents.md rename to apps/docs/docs/agents.mdx diff --git a/apps/docs/docs/create_agents.md b/apps/docs/docs/create_agents.mdx similarity index 100% rename from apps/docs/docs/create_agents.md rename to apps/docs/docs/create_agents.mdx diff --git a/apps/docs/docs/data_sources.md b/apps/docs/docs/data_sources.mdx similarity index 100% rename from apps/docs/docs/data_sources.md rename to apps/docs/docs/data_sources.mdx diff --git a/apps/docs/docs/graph.md b/apps/docs/docs/graph.mdx similarity index 100% rename from apps/docs/docs/graph.md rename to apps/docs/docs/graph.mdx diff --git a/apps/docs/docs/hosted_setup.md b/apps/docs/docs/hosted_setup.mdx similarity index 100% rename from apps/docs/docs/hosted_setup.md rename to apps/docs/docs/hosted_setup.mdx diff --git a/apps/docs/docs/index.md b/apps/docs/docs/index.mdx similarity index 100% rename from apps/docs/docs/index.md rename to apps/docs/docs/index.mdx diff --git a/apps/docs/docs/license.md b/apps/docs/docs/license.mdx similarity index 100% rename from apps/docs/docs/license.md rename to apps/docs/docs/license.mdx diff --git a/apps/docs/docs/oss_installation.md b/apps/docs/docs/oss_installation.mdx similarity index 100% rename from apps/docs/docs/oss_installation.md rename to apps/docs/docs/oss_installation.mdx diff --git a/apps/docs/docs/playground.md b/apps/docs/docs/playground.mdx similarity index 100% rename from apps/docs/docs/playground.md rename to apps/docs/docs/playground.mdx diff --git a/apps/docs/docs/prompts.md b/apps/docs/docs/prompts.mdx similarity index 100% rename from apps/docs/docs/prompts.md rename to apps/docs/docs/prompts.mdx diff --git a/apps/docs/docs/setup.md b/apps/docs/docs/setup.mdx similarity index 100% rename from apps/docs/docs/setup.md rename to apps/docs/docs/setup.mdx diff --git a/apps/docs/docs/simulate.md b/apps/docs/docs/simulate.mdx similarity index 100% rename from apps/docs/docs/simulate.md rename to apps/docs/docs/simulate.mdx diff --git a/apps/docs/docs/studio_overview.md b/apps/docs/docs/studio_overview.mdx similarity index 100% rename from apps/docs/docs/studio_overview.md rename to apps/docs/docs/studio_overview.mdx diff --git a/apps/docs/docs/testing.md b/apps/docs/docs/testing.mdx similarity index 100% rename from apps/docs/docs/testing.md rename to apps/docs/docs/testing.mdx diff --git a/apps/docs/docs/tools.md b/apps/docs/docs/tools.mdx similarity index 100% rename from apps/docs/docs/tools.md rename to apps/docs/docs/tools.mdx diff --git a/apps/docs/docs/update_agents.md b/apps/docs/docs/update_agents.mdx similarity index 100% rename from apps/docs/docs/update_agents.md rename to apps/docs/docs/update_agents.mdx diff --git a/apps/docs/docs/using_rag.md b/apps/docs/docs/using_rag.mdx similarity index 100% rename from apps/docs/docs/using_rag.md rename to apps/docs/docs/using_rag.mdx diff --git a/apps/docs/docs/using_the_api.md b/apps/docs/docs/using_the_api.mdx similarity index 100% rename from apps/docs/docs/using_the_api.md rename to apps/docs/docs/using_the_api.mdx diff --git a/apps/docs/docs/using_the_sdk.md b/apps/docs/docs/using_the_sdk.mdx similarity index 100% rename from apps/docs/docs/using_the_sdk.md rename to apps/docs/docs/using_the_sdk.mdx