diff --git a/apps/docs/docs/getting_started/concepts.md b/apps/docs/docs/getting_started/concepts.md
index 6530ef77a816f93e06c8ecaa56cd7d8614d0c44d..44aaf66e6e382c38e82698dd696e42835d5128a7 100644
--- a/apps/docs/docs/getting_started/concepts.md
+++ b/apps/docs/docs/getting_started/concepts.md
@@ -35,7 +35,7 @@ LlamaIndex.TS help you prepare the knowledge base with a suite of data connector
 [**Data Loaders**](../modules/data_loader.md):
 A data connector (i.e. `Reader`) ingest data from different data sources and data formats into a simple `Document` representation (text and simple metadata).
 
-[**Documents / Nodes**](../modules/documents_and_nodes.md): A `Document` is a generic container around any data source - for instance, a PDF, an API output, or retrieved data from a database. A `Node` is the atomic unit of data in LlamaIndex and represents a "chunk" of a source `Document`. It's a rich representation that includes metadata and relationships (to other nodes) to enable accurate and expressive retrieval operations.
+[**Documents / Nodes**](../modules/documents_and_nodes/index.md): A `Document` is a generic container around any data source - for instance, a PDF, an API output, or retrieved data from a database. A `Node` is the atomic unit of data in LlamaIndex and represents a "chunk" of a source `Document`. It's a rich representation that includes metadata and relationships (to other nodes) to enable accurate and expressive retrieval operations.
 
 [**Data Indexes**](../modules/data_index.md):
 Once you've ingested your data, LlamaIndex helps you index data into a format that's easy to retrieve.
diff --git a/apps/docs/docs/getting_started/installation.mdx b/apps/docs/docs/getting_started/installation.mdx
index 6975b5392072df7c9814aa7453a01f09bfae9980..65e20ee5835a2bce3b6d3a2e5c6d9fd3ef372949 100644
--- a/apps/docs/docs/getting_started/installation.mdx
+++ b/apps/docs/docs/getting_started/installation.mdx
@@ -58,6 +58,6 @@ Our examples use OpenAI by default. You'll need to set up your Open AI key like
 export OPENAI_API_KEY="sk-......" # Replace with your key from https://platform.openai.com/account/api-keys
 ```
 
-If you want to have it automatically loaded every time, add it to your .zshrc/.bashrc.
+If you want to have it automatically loaded every time, add it to your `.zshrc/.bashrc`.
 
 WARNING: do not check in your OpenAI key into version control.
diff --git a/apps/docs/docs/introduction.md b/apps/docs/docs/introduction.md
index 6a3630e58b57c0702d794330b2695daba5017b66..e7a3ca33190cb7a62616e89cae29ccc37fe05ced 100644
--- a/apps/docs/docs/introduction.md
+++ b/apps/docs/docs/introduction.md
@@ -37,7 +37,7 @@ For more complex applications, our lower-level APIs allow advanced users to cust
 
 `npm install llamaindex`
 
-Our documentation includes [Installation Instructions](./installation.mdx) and a [Starter Tutorial](./starter.md) to build your first application.
+Our documentation includes [Installation Instructions](./getting_started/installation.mdx) and a [Starter Tutorial](./getting_started/starter.md) to build your first application.
 
 Once you're up and running, [High-Level Concepts](./getting_started/concepts.md) has an overview of LlamaIndex's modular architecture. For more hands-on practical examples, look through our [End-to-End Tutorials](./end_to_end.md).
 
diff --git a/apps/docs/docs/modules/agent/index.md b/apps/docs/docs/modules/agent/index.md
index 28d9ff27b556689e41c16f5e8d3bbc9e1b7a4b5d..99e2d1f4ab5fa04e9898b4906c4d746a2207de2c 100644
--- a/apps/docs/docs/modules/agent/index.md
+++ b/apps/docs/docs/modules/agent/index.md
@@ -11,4 +11,4 @@ An “agent” is an automated reasoning and decision engine. It takes in a user
 
 LlamaIndex.TS comes with a few built-in agents, but you can also create your own. The built-in agents include:
 
-- [OpenAI Agent](./openai.md)
+- [OpenAI Agent](./openai.mdx)
diff --git a/apps/docs/docs/modules/query_engines/index.md b/apps/docs/docs/modules/query_engines/index.md
index 5a2980ff799e2f7550a157d8471f89cc31028436..83d6e875bf3b7c4253f854d090e045f2f87d8eb9 100644
--- a/apps/docs/docs/modules/query_engines/index.md
+++ b/apps/docs/docs/modules/query_engines/index.md
@@ -36,6 +36,6 @@ You can learn more about Tools by taking a look at the LlamaIndex Python documen
 
 ## API Reference
 
-- [RetrieverQueryEngine](../api/classes/RetrieverQueryEngine.md)
-- [SubQuestionQueryEngine](../api/classes/SubQuestionQueryEngine.md)
-- [QueryEngineTool](../api/interfaces//QueryEngineTool.md)
+- [RetrieverQueryEngine](../../api/classes/RetrieverQueryEngine.md)
+- [SubQuestionQueryEngine](../../api/classes/SubQuestionQueryEngine.md)
+- [QueryEngineTool](../../api/interfaces/QueryEngineTool.md)