diff --git a/website/docs/addon_slack.md b/website/docs/addon_slack.md
deleted file mode 100644
index 3d4e112d..00000000
--- a/website/docs/addon_slack.md
+++ /dev/null
@@ -1,115 +0,0 @@
----
-id: addon_slack_admin
-title: Slack Admin Docs
-sidebar_label: Slack
----
-
-import ReactMarkdown from "react-markdown";
-import versions from '@site/docs/assets/json/Ayon_addons_version.json'
-
-
-{versions.Slack_Badge}
-
-
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-
-
-This module allows configuring profiles(when to trigger, for which combination of task, host and family)
-and templates(could contain {} placeholder) to send notification to Slack channel(s)
-whenever configured asset type is published.
-
-
-## App installation
-
-Slack application must be installed to company's Slack first.
-
-Please locate `ayon/modules/slack/manifest.yml` file in deployed AYON installation and follow instruction at
-https://api.slack.com/reference/manifests#using and follow "Creating apps with manifests".
-
-### App icon
-
-If you would like to enrich bot with an icon, Slack admin must add the icon after app installation.
-
-Go to your Slack app home (something like https://api.slack.com/apps/XXXXXXXX/general?) > Basic information > Display Information.
-You can upload any image you want, or for your convenience locate prepared AYON icon in your installed AYON installation in `ayon\modules\slac\resources`.
-
-## Settings
-
-If Slack addon is enabled on the server, admin can configure notification for all project (`User menu > Settings > Studio Settings`)
-or per project (`Project menu > select project > Manage projects > Project Settings`)
-
-### Token
-Most important for module to work is to fill authentication token
-```Project settings > Slack > Publish plugins > Token```
-
-This token should be available after installation of the app in the Slack dashboard.
-It is possible to create multiple tokens and configure different scopes for them.
-
-![Get token](assets/slack_token.png)
-
-### Profiles
-Profiles are used to select when to trigger notification. One or multiple profiles
-could be configured, `Families`, `Task names` (regex available), `Host names`, `Product names` (regex available) combination is needed.
-
-Eg. If I want to be notified when render is published from Maya, setting is:
-
-- family: 'render'
-- host: 'Maya'
-
-### Messages to channels
-
-#### Channels
-Multiple messages could be delivered to one or multiple channels, by default app allows Slack bot
-to send messages to 'public' channels (eg. bot doesn't need to join the channel first).
-
-![Configure module](assets/slack_project.png)
-
-#### Upload thumbnail
-Integration can upload 'thumbnail' file (if present in an instance), for that bot must be
-manually added to each target channel by Slack admin first!
-(In target channel write: ```/invite @ayonNotifier``)
-
-#### Upload review
-Integration can upload 'review' file (if present in an instance), for that bot must be
-manually added to each target channel by Slack admin first!
-(In target channel write: ```/invite @ayonNotifier``)
-
-This option is limited by `Upload review maximum file size` value in `Profiles` section. It might make sense to limit uploading
-of reviews only up to certain size. If the review file hits that limit, only link to studio accessible location will be inserted instead.
-
-Burnin version of the review (usually .mp4) is preferred if present.
-
-Please be sure that this configuration is viable for your use case. In case of uploading large reviews to Slack,
-all publishes will be slowed down and you might hit a file limit on Slack pretty soon (it is 5GB for Free version of Slack, any file cannot be bigger than 1GB).
-You might try to add `{review_filepath}` to message content instead of using `Upload review`. This link might help users to find review easier on their machines.
-(It won't show a playable preview though!)
-
-#### Message
-Message content can use Templating (see [Available template keys](admin_settings_project_anatomy#available-template-keys)).
-
-Few keys also have Capitalized and UPPERCASE format. Values will be modified accordingly ({Asset} >> "Asset", {FAMILY} >> "RENDER").
-
-**Additional implemented keys:**
-- review_filepath
-
-##### Message example
-```
-{Product} was published for {ASSET} in {task[name]} task.
-
-Here you can find review {review_filepath}
-```
-
-##### Dynamic message for artists
-If artists uses host with implemented Publisher (new UI for publishing, implemented in Tray Publisher, Adobe products etc), it is possible for
-them to add additional message (notification for specific users for example, artists must provide proper user id with '@').
-Additional message will be sent only if at least one profile, eg. one target channel is configured.
-All available template keys (see higher) could be used here as a placeholder too.
-
-#### User or group notifications
-Message template or dynamic data could contain user or group notification, it must be in format @artist.name, '@John Doe' or "@admin group" for display name containing space.
-If value prefixed with @ is not resolved and Slack user is not found, message will contain same value (not translated by Slack into link and proper mention.)
-
-#### Message retention
-Currently no purging of old messages is implemented in AYON. Admins of Slack should set their own retention of messages and files per channel.
-(see https://slack.com/help/articles/203457187-Customize-message-and-file-retention-policies)
\ No newline at end of file
diff --git a/website/docs/addon_slack_admin.md b/website/docs/addon_slack_admin.md
new file mode 100644
index 00000000..ffec6b4c
--- /dev/null
+++ b/website/docs/addon_slack_admin.md
@@ -0,0 +1,171 @@
+---
+id: addon_slack_admin
+title: Slack Admin Docs
+sidebar_label: Slack
+description: AYON Slack Addon's documentations for admins.
+toc_max_heading_level: 5
+---
+
+import ReactMarkdown from "react-markdown";
+import versions from '@site/docs/assets/json/Ayon_addons_version.json'
+
+
+{versions.Slack_Badge}
+
+
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+
+This addon enables you to set up profiles that specify when to trigger notifications, and for which combination of task, host, and product types.
+It also supports customizable message templates that use placeholders (denoted by curly brackets `{}`) that are automatically populated at the time of publishing.
+
+
+## App installation
+
+Please ensure that the AYON Slack application is installed on the company's Slack using the `manifest.yml` before proceeding to AYON settings.
+
+
+
+
+
+1. Locate the `manifest.yml` file. You can find it in the `AppData` folder, typically at `c:\Users\YOUR_USER\AppData\Local\Ynput\AYON\addons\slack_X.X.X\ayon_slack\`.
+2. To create your app, please follow the steps outlined in the "Creating apps with manifests" section at [Slack API Documentation](https://api.slack.com/reference/manifests#using).
+
+:::tip
+You can quickly navigate to the local app data using the environment variable shortcut: `%LOCALAPPDATA%`. For example, using `%LOCALAPPDATA%\Ynput\AYON\addons` as path to see your installed addons.
+:::
+
+
+
+
+
+1. Locate the `manifest.yml` file. You can find it in the user data folder, typically at `~/.local/share/Ynput/AYON/addons/slack_X.X.X/ayon_slack/`.
+2. To create your app, please follow the steps outlined in the "Creating apps with manifests" section at [Slack API Documentation](https://api.slack.com/reference/manifests#using).
+
+
+
+
+
+1. Locate the `manifest.yml` file. You can find it in the `Application Support` folder, typically at `~/Library/Application Support/Ynput/AYON/addons/slack_X.X.X/ayon_slack/`.
+2. To create your app, please follow the steps outlined in the "Creating apps with manifests" section at [Slack API Documentation](https://api.slack.com/reference/manifests#using).
+
+
+
+
+
+### Custom app icon
+
+Customize your Slack bot by adding a custom icon.
+After the app is installed, the Slack admin can easily upload an image to serve as the app's icon.
+
+:::info
+Please note that this setting is found within the Slack app settings, not in AYON settings.
+:::
+
+Here's how to do it:
+
+1. Navigate to your Slack app settings at a URL similar to `https://api.slack.com/apps/XXXXXXXX/general`.
+2. Click on 'Basic Information' and then find 'Display Information'.
+3. Here, you can upload any image of your choice. For ease, you can use the [pre-made AYON icon](https://github.com/ynput/ayon-launcher/blob/develop/common/ayon_common/resources/AYON.png).
+
+## Settings
+
+![](assets/slack/notifications_to_slack.png)
+
+Once the Slack addon is enabled on the server, an AYON admin can turn on push `Notifications to Slack`:
+
+- For all projects:
+ - `ayon+settings://slack/publish/CollectSlackFamilies/enabled`
+- For a specific project, replace {PROJECT_NAME} with your project's name:
+ - `ayon+settings://slack/publish/CollectSlackFamilies/enabled?project={PROJECT_NAME}`
+
+### Token
+
+![](assets/slack/auth_key.png)
+
+For the Slack addon to function properly, it's essential to enter the authentication token:
+
+- For all projects:
+ - `ayon+settings://slack/token`
+- For a specific project, replace {PROJECT_NAME} with your project's name:
+ - `ayon+settings://slack/token?project={PROJECT_NAME}`
+
+Get Slack Token
+You'll find this token in the Slack dashboard once the app is installed. Remember, you can create separate tokens for use with different projects.
+
+![Get token](assets/slack/slack_token.png)
+
+
+
+### Profiles
+
+![](assets/slack/profiles.png)
+
+Profiles determine when notifications are triggered. You can configure one or several profiles based on `Product types`, `Hosts`, `Task types`, and `Task names` or `Product names` (with regex support).
+
+For example, to receive notifications when a render is published from Maya, the settings would be:
+
+- Product type: 'render'
+- Host: 'Maya'
+
+### Upload review maximum file size
+
+This setting controls the maximum file size for the `Upload Review` feature within the `Message to Channels` section. It sets a cap on the size of review files you can upload. If a file exceeds this limit, a link to the file's location in the studio will be shared instead.
+Additionally, if `Extract Burnin` plugin is enabled, AYON will default to using the burnin version of the review.
+
+:::info Slack storage limit
+Uploading large files to Slack can slow down the publishing process since publish plugins run one after another, causing a pause until the upload completes.
+Also, keep in mind that you can easily hit Slack's storage ceiling—5GB for the free version, and a max of 1GB for any single file.
+:::
+
+### Messages to channels
+
+![Configure module](assets/slack/messages_to_channels.png)
+
+- **Channels:**
+Specify one or more channels where you'd like the plugin to send messages.
+:::info
+Please note that the Slack bot can access public channels by default, so there's no need for it to join them first.
+However, your Slack bot must be manually invited to each target channel by a Slack admin if they are private channels.
+To add your bot to a target channel, simply mention it in the message field with the command: `/invite @ayonNotifier`.
+:::
+- **Upload thumbnail** & **Upload review:**
+The plugin is capable of uploading a 'thumbnail' or 'review' from an instance (if they are present in an instance).
+:::info
+We have one additional implemented key `{review_filepath}`.
+to message content instead of using `Upload review`. This link might help users to find review easier on their machines.
+(It won't show a playable preview though!).
+:::
+- **Message:**
+Message content can use template keys (see [Available template keys](admin_settings_project_anatomy.md#available-template-keys)).
+Few keys also have Capitalized and UPPERCASE format. Values will be modified accordingly. e.g. `{Folder[name]}` ➜ "Gun", `{PRODUCT}` ➜ "RENDER".
+:::tip Message Example
+ ```
+ {Product} was published for {FOLDER[NAME]} in {task[name]} task.
+ Here you can find review {review_filepath}.
+ ```
+:::
+
+
+
+#### Further info about messages
+- **Dynamic message for artists:**
+It is possible for artists to add additional message (notification for specific users for example, artists must provide proper user id with `@`).
+Additional message will be sent only if at least one profile, eg. one target channel is configured.
+All available template keys (see higher) could be used here as a placeholder too.
+
+- **User or group notifications:**
+Message template or dynamic data could contain user or group notification, it must be in format `@artist.name`, `@John Doe` or `@admin group` for display name containing space.
+If value prefixed with `@` is not resolved and Slack user is not found, message will contain same value (not translated by Slack into link and proper mention.)
+
+- **Message retention:**
+Currently no purging of old messages is implemented in AYON. Admins of Slack should set their own retention of messages and files per channel.
+See [Customize-message-and-file-retention-policies](https://slack.com/help/articles/203457187-Customize-message-and-file-retention-policies).
\ No newline at end of file
diff --git a/website/docs/assets/json/Ayon_addons_version.json b/website/docs/assets/json/Ayon_addons_version.json
index 6cdd3d11..3965f96c 100644
--- a/website/docs/assets/json/Ayon_addons_version.json
+++ b/website/docs/assets/json/Ayon_addons_version.json
@@ -28,7 +28,7 @@
"RoyalRender_Badge" : "[![Royal Render Addon - 0.1.1](https://img.shields.io/badge/Royal_Render_Addon-0.1.1-black)](https://github.com/ynput/OpenPype/tree/develop/openpype/modules/royalrender)",
"Flow_Badge" : "[![Flow (ShotGrid) Addon - 0.4.0](https://img.shields.io/badge/Flow_(ShotGrid)_Addon-0.4.0-3190b2)](https://github.com/ynput/ayon-shotgrid)",
"SitSync_Badge" : "![SiteSync Addon - 1.0.1](https://img.shields.io/badge/SiteSync_Addon-1.0.1-00d6a1)",
- "Slack_Badge" : "[![Slack Addon - 1.0.1](https://img.shields.io/badge/Slack_Addon-1.0.1-4A154B?logo=slack&logoColor=a9e3cc)](https://github.com/ynput/ayon-slack)",
+ "Slack_Badge" : "[![Slack Addon - 1.1.2](https://img.shields.io/badge/Slack_Addon-1.1.2-4A154B?logo=slack&logoColor=a9e3cc)](https://github.com/ynput/ayon-slack)",
"SubstancePainter_Badge" : "[![Substance Painter Addon - 0.1.0](https://img.shields.io/badge/Substance_Painter_Addon-0.1.0-e1212e)](https://github.com/ynput/OpenPype/tree/develop/openpype/hosts/substancepainter)",
"ThirdPart_Badge" : "[![3rd Party Settings Addon - 1.0.0](https://img.shields.io/badge/3rd_Party_Settings_Addon-1.0.0-00d6a1)](https://github.com/ynput/ayon-third-party/tree/develop)",
"TimersManager_Badge" : "[![Timer Manager Addon - 0.1.1](https://img.shields.io/badge/Timer_Manager_Addon-0.1.1-00d6a1)](https://github.com/ynput/OpenPype/tree/develop/openpype/modules/timers_manager)",
diff --git a/website/docs/assets/slack/auth_key.png b/website/docs/assets/slack/auth_key.png
new file mode 100644
index 00000000..f05f8fdd
Binary files /dev/null and b/website/docs/assets/slack/auth_key.png differ
diff --git a/website/docs/assets/slack/messages_to_channels.png b/website/docs/assets/slack/messages_to_channels.png
new file mode 100644
index 00000000..7290d517
Binary files /dev/null and b/website/docs/assets/slack/messages_to_channels.png differ
diff --git a/website/docs/assets/slack/notifications_to_slack.png b/website/docs/assets/slack/notifications_to_slack.png
new file mode 100644
index 00000000..e07c3ec7
Binary files /dev/null and b/website/docs/assets/slack/notifications_to_slack.png differ
diff --git a/website/docs/assets/slack/profiles.png b/website/docs/assets/slack/profiles.png
new file mode 100644
index 00000000..285b3454
Binary files /dev/null and b/website/docs/assets/slack/profiles.png differ
diff --git a/website/docs/assets/slack_token.png b/website/docs/assets/slack/slack_token.png
similarity index 100%
rename from website/docs/assets/slack_token.png
rename to website/docs/assets/slack/slack_token.png
diff --git a/website/docs/assets/slack_project.png b/website/docs/assets/slack_project.png
deleted file mode 100644
index 09d1420e..00000000
Binary files a/website/docs/assets/slack_project.png and /dev/null differ