diff --git a/docs/releases/v2.1.0.md b/docs/releases/v2.1.0.md
index c591727faf04bf7ed0e81b6c5f06fd6dce094b8a..6d0ee29bc27a7a3afdea27ea3ceceae4271bc1cd 100644
--- a/docs/releases/v2.1.0.md
+++ b/docs/releases/v2.1.0.md
@@ -10,9 +10,12 @@
 - (Re)allow the preview pane to be dragged around
 - Slight tweak to UI, allow for better side navigation bar rendering
 - Allow registered volume to be displayed on top of reference templates
+- Added DiFuMo atlases
+- Allow for bulk download of favourited datasets
 
 ## Bugfixes
 
+- Fixed a bug where plugin lifecycles were not implemented properly (#489)
 - Fixed a bug where on parcellation load, the colour of the parcellation fails to load (#454, #462)
 - Fixed a bug where, URL state is no longer parsed as state properly (#461)
 - Fixed a bug where, switching template does not result in the new template to be loaded (#475)
diff --git a/docs/requirements.md b/docs/requirements.md
new file mode 100644
index 0000000000000000000000000000000000000000..998dc6f77bdb78f2e6ced182b7f0a993b1508d2a
--- /dev/null
+++ b/docs/requirements.md
@@ -0,0 +1,18 @@
+# System requirements
+
+Interactive atlas viewer relies on [WebGL2.0](https://en.wikipedia.org/wiki/WebGL). Whilst a large proportion of modern browsers support this technology, some browser vendors do not. Most notably, none of the Apple browsers (Safari on MacOS, [**any** browser on iOS](https://developer.apple.com/app-store/review/guidelines/#software-requirements)) support WebGL2.0.
+
+!!! info
+    To check if your device and browser combination support webgl 2.0, visit <https://get.webgl.org/webgl2/>.
+
+## Desktop
+
+- PC (Windows/Linux/MacOS)
+- Latest Chrome/Firefox
+- Dedicated graphics card (optional, but will drastically improve the performance)
+
+## Mobile
+
+- Android Smartphone
+- Latest Chrome/Firefox
+
diff --git a/docs/usage/gettingStarted.md b/docs/usage/gettingStarted.md
deleted file mode 100644
index 540b39bce8fe647090a020b4874cbf4d7502e3ad..0000000000000000000000000000000000000000
--- a/docs/usage/gettingStarted.md
+++ /dev/null
@@ -1,29 +0,0 @@
-# Getting started
-
-## Requirements
-
-At its core, the interactive atlas viewer uses webgl 2.0. Whilst modern operating systems and browsers support webgl 2.0, please note that specific software and hardware combinations may have limited support. 
-
-!!! info
-    To check if your device and browser combination support webgl 2.0, visit <https://get.webgl.org/webgl2/>.
-
-### Desktop
-
-!!! tip
-    If you have a touch enabled device, you can enable mobile UI via:
-
-    `Click on Portrait` > `Settings` > `Enable Mobile UI`
-
-- PC (Windows/Linux/MacOS)
-- Chrome/Firefox
-- Dedicated GPU (not required, but will greatly enhance the experience)
-
-### Mobile
-
-- Android Smartphone
-- Chrome/Firefox
-
-## URL
-
-- <https://interactive-viewer.apps.hbp.eu>
-- <https://atlases.ebrains.eu/viewer>
\ No newline at end of file
diff --git a/docs/usage/misc.md b/docs/usage/misc.md
new file mode 100644
index 0000000000000000000000000000000000000000..6d6b3f43b563b6f5b92edcfb01b8a6e4b14d493d
--- /dev/null
+++ b/docs/usage/misc.md
@@ -0,0 +1,7 @@
+# Miscellaneous
+
+## Touch interface on desktop
+
+If you have a touch enabled device, and would like to use the touch interface, you can enable these UI via:
+
+`Click on Portrait` > `Settings` > `Enable Mobile UI`
\ No newline at end of file
diff --git a/mkdocs.yml b/mkdocs.yml
index ccd849296cf4db24d02a36f0f674a7b58b5ffe95..0a43acdc02adee3880219ccf51dbf83fb6adc66b 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -16,12 +16,13 @@ markdown_extensions:
 
 pages:
   - Home: 'index.md'
+  - System requirements: 'requirements.md'
   - User documentation:
-    - Getting started: 'usage/gettingStarted.md'
     - Selecting: 'usage/selecting.md'
     - Navigating: 'usage/navigating.md'
     - Searching: 'usage/search.md'
     - Exploring connectivity: 'usage/connectivity.md'
+    - Miscellaneous: 'usage/misc.md'
   - Advanced usage:
     - Keyboard shortcuts: 'advanced/keyboard.md'
     - URL parsing: 'advanced/url.md'