diff --git a/docs/docs/Configuration/configuration-authentication.md b/docs/docs/Configuration/configuration-authentication.md
index dacbc0cd5..77e6a5c18 100644
--- a/docs/docs/Configuration/configuration-authentication.md
+++ b/docs/docs/Configuration/configuration-authentication.md
@@ -44,9 +44,14 @@ langflow run --env-file .env
```
-> ℹ︎ INFO
-> It is critical not to expose these environment variables in your code repository. Always set them securely in your deployment environment, for example, using Docker secrets, Kubernetes ConfigMaps/Secrets, or dedicated secure environment configuration systems like AWS Secrets Manager.
->
+:::caution
+
+ It is critical not to expose these environment variables in your code repository. Always set them securely in your deployment environment, for example, using Docker secrets, Kubernetes ConfigMaps/Secrets, or dedicated secure environment configuration systems like AWS Secrets Manager.
+
+
+:::
+
+
### _`LANGFLOW_AUTO_LOGIN`_ {#8b10059e0fbc44f3bc8ce63fe7692e7e}
diff --git a/docs/docs/Integrations/1503538843.png b/docs/docs/Integrations/1503538843.png
new file mode 100644
index 000000000..9cf362a49
Binary files /dev/null and b/docs/docs/Integrations/1503538843.png differ
diff --git a/docs/docs/Integrations/505849097.png b/docs/docs/Integrations/505849097.png
new file mode 100644
index 000000000..50f17c9fa
Binary files /dev/null and b/docs/docs/Integrations/505849097.png differ
diff --git a/docs/docs/Integrations/integrations-langwatch.md b/docs/docs/Integrations/integrations-langwatch.md
new file mode 100644
index 000000000..6c69f6250
--- /dev/null
+++ b/docs/docs/Integrations/integrations-langwatch.md
@@ -0,0 +1,42 @@
+---
+title: LangWatch
+sidebar_position: 1
+slug: /integrations-langwatch
+---
+
+
+
+# LangWatch {#938674091aac4d9d9aa4aa6eb5c215b4}
+
+
+LangWatch is an all-in-one LLMOps platform for monitoring, observability, analytics, evaluations and alerting for getting user insights and improve your LLM workflows.
+
+
+To integrate with Langflow, just add your LangWatch API as a Langflow environment variable and you are good to go!
+
+
+## Step-by-step Configuration {#6f1d56ff6063417491d100d522dfcf1a}
+
+1. Obtain your LangWatch API key from [https://app.langwatch.com/](https://app.langwatch.com/)
+2. Add the following key to Langflow .env file:
+
+```shell
+LANGWATCH_API_KEY="your-api-key"
+```
+
+
+or export it in your terminal:
+
+
+```shell
+export LANGWATCH_API_KEY="your-api-key"
+```
+
+1. Restart Langflow using `langflow run --env-file .env`
+2. Run any project and check the LangWatch dashboard for monitoring and observability.
+
+
+
+
+
+
diff --git a/docs/docs/Integrations/integrations-langwatch.mdx b/docs/docs/Integrations/integrations-langwatch.mdx
deleted file mode 100644
index 8060ad480..000000000
--- a/docs/docs/Integrations/integrations-langwatch.mdx
+++ /dev/null
@@ -1,46 +0,0 @@
-import Admonition from "@theme/Admonition";
-import ThemedImage from "@theme/ThemedImage";
-import useBaseUrl from "@docusaurus/useBaseUrl";
-import ZoomableImage from "/src/theme/ZoomableImage.js";
-
-# LangWatch
-
-LangWatch is an all-in-one LLMOps platform for monitoring, observability, analytics, evaluations and alerting for getting user insights and improve your LLM workflows.
-
-To integrate with Langflow, just add your LangWatch API as a Langflow environment variable and you are good to go!
-
-## Step-by-step Configuration
-
-1. Obtain your LangWatch API key from https://app.langwatch.com/
-2. Add the following key to Langflow .env file:
-
-```bash
-LANGWATCH_API_KEY="your-api-key"
-```
-
-or export it in your terminal:
-
-```bash
-export LANGWATCH_API_KEY="your-api-key"
-```
-
-3. Restart Langflow using `langflow run --env-file .env`
-4. Run any project and check the LangWatch dashboard for monitoring and observability.
-
-