diff --git a/docs/getting_started/project_progress.md b/docs/getting_started/project_progress.md
index 01f12893..1c534e47 100644
--- a/docs/getting_started/project_progress.md
+++ b/docs/getting_started/project_progress.md
@@ -6,9 +6,22 @@ ClearML provides a comprehensive set of monitoring tools to help effectively tra
 These tools offer both high-level overviews and detailed insights into task execution, resource 
 utilization, and project performance.
 
-## Offerings
 
-### Project Dashboard 
+## Project Overview
+
+A project's **OVERVIEW** tab in the UI presents a general picture of a project: 
+* Metric Snapshot – A graphical representation of selected metric values across project tasks, offering a quick assessment of progress.
+* Task Status Tracking – When a single metric variant is selected for the snapshot, task status is color-coded (e.g., 
+Completed, Aborted, Published, Failed) for better visibility.
+
+Use the Metric Snapshot to track project progress and identify trends in task performance.
+
+For more information, see [Project Overview](../webapp/webapp_project_overview.md).
+
+![Project Overview](../img/webapp_project_overview.png#light-mode-only)
+![Project Overview](../img/webapp_project_overview_dark.png#dark-mode-only)
+
+## Project Dashboard 
 
 :::info Pro Plan Offering
 The Project Dashboard app is available under the ClearML Pro plan.
@@ -28,16 +41,22 @@ For more information, see [Project Dashboard](../webapp/applications/apps_dashbo
 ![Project Dashboard](../img/apps_dashboard.png#light-mode-only)
 ![Project Dashboard](../img/apps_dashboard_dark.png#dark-mode-only)
 
-### Project Overview
+## Task Monitoring
 
-A project's **OVERVIEW** tab in the UI presents a general picture of a project: 
-* Metric Snapshot – A graphical representation of selected metric values across project tasks, offering a quick assessment of progress.
-* Task Status Tracking – When a single metric variant is selected for the snapshot, task status is color-coded (e.g., 
-Completed, Aborted, Published, Failed) for better visibility.
+ClearML provides task monitoring capabilities through the [`clearml.automation.Monitor`](https://github.com/clearml/clearml/blob/master/clearml/automation/monitor.py) 
+class. With this class you can implement monitoring workflows such as:
 
-Use the Metric Snapshot to track project progress and identify trends in task performance.
+* Send notifications via Slack or other channels
+* Trigger automated responses based on specific task conditions
 
-For more information, see [Project Overview](../webapp/webapp_project_overview.md).
+For a practical example, see the [Slack Alerts Example](../guides/services/slack_alerts.md), which demonstrates how to:
+
+* Track task status (completion, failure, etc.)
+* Send notifications to a specified Slack channel
+* Retrieve task details such as status, console logs, and links to the ClearML Web UI
+
+You can also configure filters for task types and projects to reduce unnecessary notifications.
+
+![Slack Alerts](../img/examples_slack_alerts.png#light-mode-only)
+![Slack Alerts](../img/examples_slack_alerts_dark.png#dark-mode-only)
 
-![Project Overview](../img/webapp_project_overview.png#light-mode-only)
-![Project Overview](../img/webapp_project_overview_dark.png#dark-mode-only)
diff --git a/docs/guides/services/slack_alerts.md b/docs/guides/services/slack_alerts.md
index 8a3bbd6a..d3913146 100644
--- a/docs/guides/services/slack_alerts.md
+++ b/docs/guides/services/slack_alerts.md
@@ -6,11 +6,12 @@ The [Slack alerts example](https://github.com/clearml/clearml/blob/master/exampl
 demonstrates how to use the `clearml.automation.monitor` class to implement a service that monitors the completion and 
 failure of tasks, and posts alert messages on a Slack channel.
 
-![Slack alert example](../../img/examples_slack_alerts.png)
+![Slack alert example](../../img/examples_slack_alerts.png#light-mode-only)
+![Slack alert example](../../img/examples_slack_alerts_dark.png#dark-mode-only)
 
-## Creating a Slack Bot
+## Creating a Slackbot
 
-Before configuring and running the Slack alert service, create a Slack Bot (**ClearML Bot**). 
+Before configuring and running the Slack alert service, create a Slackbot (**ClearML Bot**). 
 
 :::important
 The Slack API token and channel you create are required to configure the Slack alert service.
diff --git a/docs/img/examples_slack_alerts.png b/docs/img/examples_slack_alerts.png
index 6c38d3b0..9bba329c 100644
Binary files a/docs/img/examples_slack_alerts.png and b/docs/img/examples_slack_alerts.png differ
diff --git a/docs/img/examples_slack_alerts_dark.png b/docs/img/examples_slack_alerts_dark.png
new file mode 100644
index 00000000..4d29a69d
Binary files /dev/null and b/docs/img/examples_slack_alerts_dark.png differ