diff --git a/src/components/layouts/Default.vue b/src/components/layouts/Default.vue index 1f687fdc..4bbddbe0 100644 --- a/src/components/layouts/Default.vue +++ b/src/components/layouts/Default.vue @@ -23,6 +23,11 @@ + + + + + +
+
+
+ + + + + + {{ $t('pages.home.cards.voiceCall') }} + + +
+
+
+
+ + + + + + {{ $t('pages.home.cards.videoCall') }} + + +
+
+
+
+ + + + + + {{ $t('pages.home.cards.screenShare') }} + + +
+
+
+ + + + + + + {{ $t('pages.home.cards.callForward') }} + + + +
+
+ + + + + + + {{ $t('pages.home.cards.callBlocking') }} + + + +
+
+ + + + + + + {{ $t('pages.home.cards.reminder') }} + + + +
+
+ + + + + + {{ $t('pages.home.cards.buddyList') }} + + +
+
+
+ + + + + diff --git a/src/locales/en.json b/src/locales/en.json index 1f757625..eb8e1fa9 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -17,6 +17,10 @@ "callNotAvailable": "Could not initialize call functionality properly" }, "navigation": { + "home": { + "title": "Home", + "subTitle": "Access to main features" + }, "conversations": { "title": "Conversations", "subTitle": "Calls, SMS, VoiceMails" @@ -146,6 +150,20 @@ "addInputError": "Input a valid number or subscriber name", "timeout": "Timeout", "destination": "Destination" + }, + "home": { + "title": "Home", + "cards": { + "voiceCall": "Voice Call", + "videoCall": "Video Call", + "screenShare": "Screen Share", + "callForward": "Call Forward", + "callBlocking": "Call Blocking", + "reminder": "Reminder", + "buddyList": "Buddy List", + "welcome": "Welcome" + }, + "featureNotAvailable": "This feature is currently not available" } }, "call": { diff --git a/src/routes.js b/src/routes.js index f2e003dc..9b833ea1 100644 --- a/src/routes.js +++ b/src/routes.js @@ -4,6 +4,10 @@ export default [ path: '/user', component: require('./components/layouts/Default').default, children: [ + { + path: 'home', + component: require('./components/pages/Home').default, + }, { path: 'conversations', component: require('./components/pages/Conversations').default, @@ -55,7 +59,7 @@ export default [ }, { path: '/', - redirect: {path:'/user/conversations'} + redirect: {path:'/user/home'} }, { path: '*',