diff --git a/.gitpod.yml b/.gitpod.yml
index fdbbf919..be5de55f 100644
--- a/.gitpod.yml
+++ b/.gitpod.yml
@@ -13,3 +13,6 @@ vscode:
- errata-ai.vale-server
- eamodio.gitlens
- trond-snekvik.simple-rst
+
+ports:
+ - port: 3000
diff --git a/docs/design/feedback.rst b/docs/design/feedback.rst
new file mode 100644
index 00000000..5d6d3b4b
--- /dev/null
+++ b/docs/design/feedback.rst
@@ -0,0 +1,119 @@
+.. vale off
+
+Providing effective user feedback
+=================================
+
+.. vale on
+
+When developing features, it's crucial to ensure that Users receive clear feedback and guidance when certain information or data isn't available. Instead of hiding tabs or displaying zeroed metrics, for example, adopt a proactive approach to inform and guide Users.
+
+Fundamental principles
+----------------------
+
+The principles of visibility, transparency, and guidance form the foundation of an intuitive and informative user experience.
+
+- **Visibility**: keep all functionalities visible, even when there's no data available.
+- **Transparency**: communicate that information is missing.
+- **Guidance**: provide instructions on how to obtain the data or activate the necessary settings.
+
+Visibility ensures that Users are aware of all available functionalities, even when they're not active or populated. Transparency builds trust by clearly explaining why certain information might be missing. Guidance empowers Users by providing clear paths for action and improvement. Together, these principles transform moments of frustration into solutions, helping marketing professionals complete their tasks.
+
+Practical implementation
+------------------------
+
+The practical implementation of these guidelines in Mautic goes beyond avoiding blank screens. It involves creating a conversation with the User, anticipating their needs, and guiding them with minimal workload. Every informative message, call to action, or configuration tip serves as a contextual mini-tutorial, educating Users about the platform's capabilities while helping them overcome obstacles.
+
+When encountering situations where data is absent, follow these guidelines:
+
+- Replace empty areas or zeroed metrics with explanatory messages. For example:
+
+ 'There's no information about the devices used yet. This happens automatically when Users interact with your Campaigns.'
+
+- Include clear call to actions that guide the User on how to proceed. For example:
+
+ 'No Email activity? Start sending some Campaigns to populate this data!'
+
+- If the lack of data is due to incomplete configuration, provide direct guidance:
+
+ 'It looks like device tracking isn't active. Go to settings to turn it on.'
+
+- Help Users understand the value of the missing data:
+
+ 'Device information helps optimize your Campaigns for different platforms. Once this data becomes available, see detailed analytics here.'
+
+- Use icons, colors, or visual elements to indicate areas that need attention.
+
+This approach not only improves immediate usability but also accelerates the Users' learning curve, leading to more sophisticated use of the platform over time. Users don't feel 'stuck' when encountering areas without data, but are instead motivated to explore and fill those gaps.
+
+.. vale off
+
+'No Results' template
+---------------------
+
+.. vale on
+
+Mautic includes a reusable template for displaying informative messages when no results are available. This template offers a consistent and flexible way to provide User feedback, with options for additional actions.
+
+Template structure
+------------------
+
+.. code-block:: twig
+
+ {% if tip is defined %}
+
+ {{ tip|trans }}
+ {% if link is defined and (href is defined or onclick is defined) %}
+
{{link|trans}}
+ {% endif %}
+
+ {% endif %}
+
+Parameters
+----------
+
+The template accepts the following parameters:
+
+.. vale off
+
+- **tip** (required): display a translation string that contains the main message.
+- **link** (optional): a translation string for the link/button text.
+- **href** (optional): use the ``URL`` for navigation when clicking the link.
+- **onclick** (optional): JavaScript function to be executed when the link is clicked.
+
+.. vale on
+
+Functionality
+-------------
+
+If you've defined ``tip``, a ``div`` with the class ``alert alert-info`` that contains the translated message displays, if not then nothing renders. If you've defined `link` and at least one of ``href`` or ``onclick``, a link below the main message displays. Configure the link to navigate to a new page with ``href`` or execute a JavaScript function with ``onclick``.
+
+Usage example
+-------------
+
+To use this template in your code, you can include it as follows:
+
+.. code-block:: twig
+
+ {{ include('@MauticCore/Helper/no-information.html.twig', {
+ 'tip': 'Mautic.segment.no.results',
+ 'link': 'Mautic.segment.add.new',
+ 'href': '{{ path('Mautic_segment_action', {'objectAction': 'new'}) }}'
+ }) }}
+
+In this example, the template displays a message indicating that no Segments are available, with a link to create a new Segment.
+
+Why?
+----
+
+It ensures a uniform presentation of 'no results' messages across the platform, providing consistency in the User experience. Its flexibility allows use in various situations, from empty lists to graphs without data, adapting to different contexts. The optional link makes the template actionable, guiding the User to actions that can resolve the 'no results' situation, promoting engagement and problem resolution. Additionally, support for internationalization translates messages into different languages, making the platform more globally accessible.
+
+Best practices
+--------------
+
+To maximize the effectiveness of this template, it's important to follow some best practices. Always provide a clear and informative message in the ``tip`` parameter, ensuring that the User understands the current situation. When appropriate, include a link to an action that can help the User resolve the 'no results' situation, promoting a more interactive and solution-oriented experience. It's crucial to use specific messages for each context, avoiding generic texts like 'No results found,' which may not provide useful information to the User. Finally, include all strings in the translation files to guarantee a consistent experience in all supported languages.
+
+This approach aligns with modern User experience (UX) design best practices. It incorporates principles of informative design, immediate feedback, and contextual guidance. Providing relevant information and actions at the exact moment and place where the User needs them creates an interface that not only reacts to User actions but anticipates and meets their needs.
+
+Clear messages and specific guidance reduce the number of support tickets related to User confusion or 'missing' functionalities. Additionally, standardizing the handling of empty or inactive states across the platform creates a more consistent and maintainable codebase.
+
+It's essential to note that, while general guidelines exist, customize implementation for each specific context. A message that works well for empty Email metrics might not be appropriate for a Campaign Report without data. Think critically about the specific context of each implementation and adapt the messages and call to actions accordingly.
diff --git a/docs/index.rst b/docs/index.rst
index 83eb42d1..96cf9268 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -51,6 +51,13 @@ There are several ways to support Mautic other than contributing with code.
development-environment/setup
development-environment/environments
+.. toctree::
+ :maxdepth: 2
+ :caption: Design and UX
+ :hidden:
+
+ design/feedback
+
.. toctree::
:maxdepth: 2
:caption: Themes