diff --git a/docs/docs/starter-projects/basic-prompting.mdx b/docs/docs/getting-started/basic-prompting.mdx
similarity index 100%
rename from docs/docs/starter-projects/basic-prompting.mdx
rename to docs/docs/getting-started/basic-prompting.mdx
diff --git a/docs/docs/starter-projects/blog-writer.mdx b/docs/docs/getting-started/blog-writer.mdx
similarity index 100%
rename from docs/docs/starter-projects/blog-writer.mdx
rename to docs/docs/getting-started/blog-writer.mdx
diff --git a/docs/docs/getting-started/creating-flows.mdx b/docs/docs/getting-started/creating-flows.mdx
deleted file mode 100644
index 9c16d225f..000000000
--- a/docs/docs/getting-started/creating-flows.mdx
+++ /dev/null
@@ -1,51 +0,0 @@
-import ThemedImage from "@theme/ThemedImage";
-import useBaseUrl from "@docusaurus/useBaseUrl";
-import ZoomableImage from "/src/theme/ZoomableImage.js";
-import ReactPlayer from "react-player";
-
-# 🎨 Creating Flows
-
-## Compose
-
-Creating flows with Langflow is easy. Drag sidebar components onto the canvas and connect them together to create your pipeline.
-Langflow provides a range of Components to choose from, including **Chat Input**, **Chat Output**, **API Request** and **Prompt**.
-
-
-
-## Starter Flows
-
-Langflow provides a range of starter flows to help you get started. These flows are pre-built and can be used as a starting point for your own flows.
-
-
-
-
-
-## Defining Inputs and Outputs
-
-Each flow can have multiple inputs and outputs. These can be defined by placing **Inputs** and **Outputs** components on the canvas.
-
-The **Inputs** components define the inputs to the flow.
-Whenever you place an Input component on the canvas, it will allow you to interactively define change its value
-from the Interactive Panel.
-
-The **Text Input** component allows you to define a text input, and the **Chat Input** component allows you to use the chat input from the Interactive Panel.
-
-The **Outputs** components define the outputs of the flow and work similarly to the Inputs components.
-
-Both Inputs and Outputs components can be connected to other components on the canvas and are used to define how the API works too.
-
-
-
-
-
-
diff --git a/docs/docs/starter-projects/document-qa.mdx b/docs/docs/getting-started/document-qa.mdx
similarity index 100%
rename from docs/docs/starter-projects/document-qa.mdx
rename to docs/docs/getting-started/document-qa.mdx
diff --git a/docs/docs/starter-projects/memory-chatbot.mdx b/docs/docs/getting-started/memory-chatbot.mdx
similarity index 100%
rename from docs/docs/starter-projects/memory-chatbot.mdx
rename to docs/docs/getting-started/memory-chatbot.mdx
diff --git a/docs/docs/starter-projects/rag-with-astradb.mdx b/docs/docs/getting-started/rag-with-astradb.mdx
similarity index 100%
rename from docs/docs/starter-projects/rag-with-astradb.mdx
rename to docs/docs/getting-started/rag-with-astradb.mdx
diff --git a/docs/sidebars.js b/docs/sidebars.js
index f1a1a48f1..84e1dca16 100644
--- a/docs/sidebars.js
+++ b/docs/sidebars.js
@@ -4,7 +4,15 @@ module.exports = {
type: "category",
label: " Getting Started",
collapsed: false,
- items: ["index", "getting-started/cli", "getting-started/creating-flows"],
+ items: [
+ "index",
+ "getting-started/cli",
+ "getting-started/basic-prompting",
+ "getting-started/document-qa",
+ "getting-started/blog-writer",
+ "getting-started/memory-chatbot",
+ "getting-started/rag-with-astradb",
+ ],
},
{
type: "category",
@@ -15,18 +23,6 @@ module.exports = {
"whats-new/migrating-to-one-point-zero",
],
},
- {
- type: "category",
- label: " Starter Projects",
- collapsed: false,
- items: [
- "starter-projects/rag-with-astradb",
- "starter-projects/basic-prompting",
- "starter-projects/memory-chatbot",
- "starter-projects/document-qa",
- "starter-projects/blog-writer",
- ],
- },
{
type: "category",
label: " Step-by-Step Guides",