- My Dashboard is: @Model.Dashboard.Alias
-
-```
-
-### More Examples
+> [!NOTE]
+> This project takes security and support seriously.
+> Please visit the [Security](https://github.com/jcdcdev/Umbraco.Community.SimpleDashboards?tab=security-ov-file) page for more information.
+
-[docs/examples.md](https://github.com/jcdcdev/Umbraco.Community.SimpleDashboards/blob/v15/docs/examples.md)
## Contributing
Contributions to this package are most welcome! Please visit the [Contributing](https://github.com/jcdcdev/Umbraco.Community.SimpleDashboards/contribute) page.
-## Acknowledgements (Thanks)
+## Acknowledgements
+
+Thank you to the following projects and individuals for their contributions. High five, you rock! 🤘🦄
- LottePitcher - [opinionated-package-starter](https://github.com/LottePitcher/opinionated-package-starter)
diff --git a/docs/README_nuget.md b/docs/README_nuget.md
index 895419b..edd11fd 100644
--- a/docs/README_nuget.md
+++ b/docs/README_nuget.md
@@ -1,4 +1,4 @@
-# Umbraco.Community.SimpleDashboards
+# Simple Dashboards
[](#https://docs.jcdc.dev/umbraco-community-simpledashboards/latest)
[](https://marketplace.umbraco.com/package/Umbraco.Community.SimpleDashboards)
@@ -16,48 +16,18 @@ This packages aims to help developers quickly put together Umbraco Dashboards us
- Supports both Views & View Components
- Easy to define section permissions
-## Installation
+## Security
-### Install Package
-
-```powershell
-dotnet add package Umbraco.Community.SimpleDashboards
-```
-
-## Quick Start
-
-### Register Dashboard
-
-By default, this will display in the content section for Admins only.
-
-```csharp title="BasicDashboard.cs"
-using Umbraco.Community.SimpleDashboards.Web;
-public class BasicDashboard : SimpleDashboard { }
-```
-
-### Create View
-
-- Your view **must** go in `/Views/Dashboard`
-- You view **must** be the name of your C# class (without `Dashboard`)
- - For example: `BasicDashboard.cs` => `/Views/Dashboard/Basic.cshtml`
-
-```csharp title="Views/Dashboard/Basic.cshtml"
-@inherits Umbraco.Community.SimpleDashboards.Web.DashboardViewPage
-
-