diff --git a/NP_Custom_Templates/templates/dashboard.html.liquid b/NP_Custom_Templates/templates/dashboard.html.liquid
index f5c8e7df..0c20f3ac 100644
--- a/NP_Custom_Templates/templates/dashboard.html.liquid
+++ b/NP_Custom_Templates/templates/dashboard.html.liquid
@@ -26,3 +26,5 @@
{% include "footer" %}
+
+current_page: "/app/user-guides"
\ No newline at end of file
diff --git a/NP_Root_Startpage/.gitignore b/NP_Root_Startpage/.gitignore
new file mode 100644
index 00000000..9c3cc990
--- /dev/null
+++ b/NP_Root_Startpage/.gitignore
@@ -0,0 +1,3 @@
+node_modules/
+dist/
+.cache/
\ No newline at end of file
diff --git a/NP_Root_Startpage/CNAME b/NP_Root_Startpage/CNAME
new file mode 100644
index 00000000..000ea0d5
--- /dev/null
+++ b/NP_Root_Startpage/CNAME
@@ -0,0 +1 @@
+root.reyes.cool
\ No newline at end of file
diff --git a/NP_Root_Startpage/LICENSE b/NP_Root_Startpage/LICENSE
new file mode 100644
index 00000000..d7ffb40f
--- /dev/null
+++ b/NP_Root_Startpage/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2020 Jorge Reyes
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/NP_Root_Startpage/README.md b/NP_Root_Startpage/README.md
new file mode 100644
index 00000000..ec9306d1
--- /dev/null
+++ b/NP_Root_Startpage/README.md
@@ -0,0 +1,63 @@
+
+
+### Root is a start-page aimed to simplicity and elegance
+
+This project is blazing fast :zap:, it only contains an html, css and javascript files.
+
+## Customizing
+
+Root was created to be lightweight, fast and easy to customize.
+
+### Changin Colors
+
+To change the colors used in the startpage edit `styles.css`.
+
+```css
+:root {
+ --primary: #dd2e44;
+ --text-light: #eeeeee;
+ --background: #1e1c21;
+ --background-light: #333138;
+}
+```
+
+### Changin Name and Adding Custom Cards
+
+> This project uses [Remix Icons](https://remixicon.com/).
+
+To change the default name and edit the cards, edit `app.js`. It should look something like this:
+
+```js
+const NAME = "John Doe";
+
+const CARDS = [
+ {
+ name: "Twitter",
+ icon: "ri-twitter-fill",
+ link: "https://twitter.com",
+ },
+ {
+ name: "Github",
+ icon: "ri-github-fill",
+ link: "https://github.com/",
+ },
+];
+```
+
+To add a new card, just append a new object to the `CARDS` constant. The object should look something like this:
+
+```js
+{
+ name: "