diff --git a/README.md b/README.md
index ba79d7b..9a6b7a6 100644
--- a/README.md
+++ b/README.md
@@ -9,6 +9,15 @@ Contains updated content with new AMIA Phase 2 information and documents.
+## Requirements
+
+The following requirements and dependencies were used for this project. Other system and software configurations are open for testing.
+
+1. Windows 10 Pro
+2. NodeJS
+ - npm version 10.16.3
+ - npm version 6.9.0
+
## Build Setup
1. Clone the project.
diff --git a/src/components/templates/Maintenance.vue b/src/components/templates/Maintenance.vue
new file mode 100644
index 0000000..59f4e3c
--- /dev/null
+++ b/src/components/templates/Maintenance.vue
@@ -0,0 +1,15 @@
+
+ b-row(
+ class="text-center thumbnail-container")
+ b-col(sm="12")
+ h3 This page is currently down for maintenance.
+ br
+ br
+ br
+
+
+
diff --git a/src/components/widgets/PageMaintenance.vue b/src/components/widgets/PageMaintenance.vue
new file mode 100644
index 0000000..6ce8086
--- /dev/null
+++ b/src/components/widgets/PageMaintenance.vue
@@ -0,0 +1,16 @@
+
+ b-container(fluid class="container-fluid-custom bg-greylight")
+ maintenance
+
+
+
+
diff --git a/src/defines/menumaps/links-mainmenu.js b/src/defines/menumaps/links-mainmenu.js
index c9731c1..dc06d66 100644
--- a/src/defines/menumaps/links-mainmenu.js
+++ b/src/defines/menumaps/links-mainmenu.js
@@ -39,8 +39,8 @@ module.exports = {
},
{
'title': 'CBA Tool',
- 'link': 'http://cbatool.ciat.cgiar.org/',
- 'external': 'true',
+ 'link': '/maintenance',
+ 'external': 'false',
'children': []
},
{
diff --git a/src/router/index.js b/src/router/index.js
index 0dba2b9..6ee5b4b 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -4,6 +4,7 @@ import Home from '@/components/pages/Home'
import Maps from '@/components/pages/Maps'
import Documents from '@/components/pages/Documents'
import PageRedirect from '@/components/widgets/PageRedirect'
+import PageMaintenance from '@/components/widgets/PageMaintenance'
import CraDs from '@/components/pages/CraDs'
import Crva from '@/components/pages/Crva'
import MonitoringEvaluation from '@/components/pages/MonitoringEvaluation'
@@ -111,6 +112,11 @@ export default new Router({
name: 'questionnaires',
component: Questionnaires
},
+ {
+ path: '/maintenance',
+ name: 'PageMaintenace',
+ component: PageMaintenance
+ },
{
path: '/:projects',
name: 'PageRedirect',