diff --git a/README.md b/README.md
index 56becbe7..5ed89dc7 100644
--- a/README.md
+++ b/README.md
@@ -13,6 +13,9 @@ Allows upload, registration, execution, and deployment of:
- Datasets
- Notebooks
+For more details about the project please follow this [announcement blog post](https://lfaidata.foundation/blog/2021/09/28/machine-learning-exchange-mlx/).
+
+
Additionally it provides:
diff --git a/dashboard/origin-mlx/src/components/Sidebar/SidebarList.tsx b/dashboard/origin-mlx/src/components/Sidebar/SidebarList.tsx
index c67853b3..508f8502 100644
--- a/dashboard/origin-mlx/src/components/Sidebar/SidebarList.tsx
+++ b/dashboard/origin-mlx/src/components/Sidebar/SidebarList.tsx
@@ -72,7 +72,8 @@ function SidebarList() {
const [secretVisible, setSecretVisible] = useState(false)
const { height } = useWindowDimensions()
// Ensures the "Join the Conversation" button is away from the other buttons (if there is enough space)
- const guardHeight = height > 700 && !secretVisible ? (height - 670) / 2 : 0
+ let buffer = !isAdmin ? (height - 600) : (height - 670) / 2 // checks if you are an admin , spacing for guardHeight will change such that elements are placed at the bottom
+ const guardHeight = height > 700 && !secretVisible ? buffer : 0
console.log(height)
@@ -119,8 +120,14 @@ function SidebarList() {