diff --git a/documentation/assets/img/magic_link.png b/documentation/assets/img/magic_link.png
index ebd95779..71fba52b 100644
Binary files a/documentation/assets/img/magic_link.png and b/documentation/assets/img/magic_link.png differ
diff --git a/documentation/docs/advanced/authentication.md b/documentation/docs/advanced/authentication.md
deleted file mode 100644
index e5a002d4..00000000
--- a/documentation/docs/advanced/authentication.md
+++ /dev/null
@@ -1,52 +0,0 @@
-# Authenticate
-
-:::info
-This is only helpful for self-hosted users or teams. If you're using [Khoj Cloud](https://app.khoj.dev), both Magic Links and Google OAuth work.
-:::
-
-By default, most of the instructions for self-hosting Khoj assume a single user, and so the default configuration is to run in anonymous mode. However, if you want to enable authentication, you can do so either with with [Magic Links](#using-magic-links) or [Google OAuth](#using-google-oauth) as shown below. This can be helpful to make Khoj securely accessible to you and your team.
-
-:::tip[Note]
-Remove the `--anonymous-mode` flag from your khoj start up command or docker-compose file to enable authentication.
-:::
-
-## Using Magic Links
-The most secure way to do this is to integrate with [Resend](https://resend.com) by setting up an account and adding an environment variable for `RESEND_API_KEY`. You can get your API key [here](https://resend.com/api-keys). This will allow you to automatically send sign-in links to users who want to log in.
-
-It's still possible to use the magic links feature without Resend, but you'll need to manually send the magic links to users who want to log in.
-
-## Manually sending magic links
-
-1. The user will have to enter their email address in the login form.
-They'll click `Send Magic Link`. Without the Resend API key, this will just create an unverified account for them in the backend
-
-
-2. You can get their magic link using the admin panel
-Go to the [admin panel](http://localhost:42110/server/admin/database/khojuser/). You'll see a list of users. Search for the user you want to send a magic link to. Tick the checkbox next to their row, and use the action drop down at the top to 'Get email login URL'. This will generate a magic link that you can send to the user, which will appear at the top of the admin interface.
-
-| Get email login URL | Retrieved login URL |
-|---------------------|---------------------|
-| | |
-
-3. Send the magic link to the user. They can click on it to log in.
-
-Once they click on the link, they'll automatically be logged in. They'll have to repeat this process for every new device they want to log in from, but they shouldn't have to repeat it on the same device.
-
-A given magic link can only be used once. If the user tries to use it again, they'll be redirected to the login page to get a new magic link.
-
-## Using Google OAuth
-
-To set up your self-hosted Khoj with Google Auth, you need to create a project in the Google Cloud Console and enable the Google Auth API.
-
-To implement this, you'll need to:
-1. You must use the `python` package or build from source, because you'll need to install additional packages for the google auth libraries (`prod`). The syntax to install the right packages is
- ```
- pip install khoj[prod]
- ```
-2. [Create authorization credentials](https://developers.google.com/identity/sign-in/web/sign-in) for your application.
-3. Open your [Google cloud console](https://console.developers.google.com/apis/credentials) and create a configuration like below for the relevant `OAuth 2.0 Client IDs` project:
-![Google auth login project settings](https://github.com/khoj-ai/khoj/assets/65192171/9bcbf6f4-197d-4d0c-973a-c10b1331c892)
-
-4. Configure these environment variables: `GOOGLE_CLIENT_SECRET`, and `GOOGLE_CLIENT_ID`. You can find these values in the Google cloud console, in the same place where you configured the authorized origins and redirect URIs.
-
-That's it! That should be all you have to do. Now, when you reload Khoj without `--anonymous-mode`, you should be able to use your Google account to sign in.
diff --git a/documentation/docs/advanced/authentication.mdx b/documentation/docs/advanced/authentication.mdx
new file mode 100644
index 00000000..e6cd4471
--- /dev/null
+++ b/documentation/docs/advanced/authentication.mdx
@@ -0,0 +1,74 @@
+# Authenticate (Multi-User Setup)
+
+```mdx-code-block
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+```
+
+By default, most of the instructions for self-hosting Khoj assume a single user, and so the default configuration is to run in anonymous mode. However, if you want to enable authentication, you can do so either with with [Magic Links](#using-magic-links) or [Google OAuth](#using-google-oauth) as shown below. This can be helpful to make Khoj securely accessible to you and your team.
+
+:::tip[Note]
+Remove the `--anonymous-mode` flag from your khoj start up command or docker-compose file to enable authentication.
+:::
+
+For either of these methods, you'll need to use the prod version of the Khoj package. You can install it as below:
+
+
+
+ Update your `docker-compose.yml` to use the prod image
+ ```bash
+ image: ghcr.io/khoj-ai/khoj:prod
+ ```
+
+
+
+ ```bash
+ pip install khoj[prod]
+ ```
+
+
+
+## Using Magic Links
+The most secure way to do this is to integrate with [Resend](https://resend.com).
+
+1. Setup your account at https://resend.com
+2. Set an environment variable for `RESEND_API_KEY`. You can get your API key [here](https://resend.com/api-keys).
+3. Set an environment variable for `RESEND_EMAIL`. This is the email address that will show up in your `from` field when sending magic links.
+
+This will allow you to automatically send sign-in links to users who want to log in.
+
+It's still possible to use the magic links feature without Resend, but you'll need to manually send the magic links to users who want to log in.
+
+## Manually sending magic links
+
+1. The user will have to enter their email address in the login form.
+
+ They'll click `Send Magic Link`. Without the Resend API key, this will just create an unverified account for them in the backend
+
+
+2. You can get their magic link using the admin panel
+
+ Go to the [admin panel](http://localhost:42110/server/admin/database/khojuser/). You'll see a list of users. Search for the user you want to send a magic link to. Tick the checkbox next to their row, and use the action drop down at the top to 'Get email login URL'. This will generate a magic link that you can send to the user, which will appear at the top of the admin interface.
+
+ | Get email login URL | Retrieved login URL |
+ |---------------------|---------------------|
+ | | |
+
+3. Send the magic link to the user. They can click on it to log in.
+
+ Once they click on the link, they'll automatically be logged in. They'll have to repeat this process for every new device they want to log in from, but they shouldn't have to repeat it on the same device.
+
+ A given magic link can only be used once. If the user tries to use it again, they'll be redirected to the login page to get a new magic link.
+
+## Using Google OAuth
+
+To set up your self-hosted Khoj with Google Auth, you need to create a project in the Google Cloud Console and enable the Google Auth API.
+
+To implement this, you'll need to:
+1. [Create authorization credentials](https://developers.google.com/identity/sign-in/web/sign-in) for your application.
+2. Open your [Google cloud console](https://console.developers.google.com/apis/credentials) and create a configuration like below for the relevant `OAuth 2.0 Client IDs` project:
+![Google auth login project settings](https://github.com/khoj-ai/khoj/assets/65192171/9bcbf6f4-197d-4d0c-973a-c10b1331c892)
+
+3. Configure these environment variables: `GOOGLE_CLIENT_SECRET`, and `GOOGLE_CLIENT_ID`. You can find these values in the Google cloud console, in the same place where you configured the authorized origins and redirect URIs.
+
+That's it! That should be all you have to do. Now, when you reload Khoj without `--anonymous-mode`, you should be able to use your Google account to sign in.