diff --git a/client/src/App.vue b/client/src/App.vue index 21e500bd..acbc6700 100644 --- a/client/src/App.vue +++ b/client/src/App.vue @@ -20,6 +20,7 @@ import SimpleLayout from '@/layouts/SimpleLayout'; import FullScreenLayout from '@/layouts/FullScreenLayout'; import PublicLayout from '@/layouts/PublicLayout'; + import BlankLayout from '@/layouts/BlankLayout'; import Modal from '@/components/Modal'; import NewContentBlockWizard from '@/components/content-block-form/NewContentBlockWizard'; import EditContentBlockWizard from '@/components/content-block-form/EditContentBlockWizard'; @@ -48,6 +49,7 @@ SimpleLayout, FullScreenLayout, PublicLayout, + BlankLayout, Modal, NewContentBlockWizard, EditContentBlockWizard, diff --git a/client/src/layouts/BlankLayout.vue b/client/src/layouts/BlankLayout.vue new file mode 100644 index 00000000..b6652eaf --- /dev/null +++ b/client/src/layouts/BlankLayout.vue @@ -0,0 +1,14 @@ + + + + + + + diff --git a/client/src/pages/onboarding.vue b/client/src/pages/onboarding.vue new file mode 100644 index 00000000..06ca0f2b --- /dev/null +++ b/client/src/pages/onboarding.vue @@ -0,0 +1,67 @@ + + + + + Herzlich willkommen! + + + Schauen Sie sich die Einführung an und lernen Sie mySkillbox kennen. + + Einführung starten + Einführung überspringen + + + + + + + diff --git a/client/src/router/index.js b/client/src/router/index.js index 58f96b2e..d6438859 100644 --- a/client/src/router/index.js +++ b/client/src/router/index.js @@ -39,6 +39,7 @@ import oldClasses from '@/pages/oldClasses'; import createClass from '@/pages/createClass'; import showCode from '@/pages/showCode'; import news from '@/pages/news'; +import onboarding from '@/pages/onboarding'; import store from '@/store/index'; @@ -192,6 +193,12 @@ const routes = [ component: news, name: 'news' }, + { + path: '/onboarding', + component: onboarding, + name: 'onboarding', + meta: {layout: 'blank'} + }, {path: '/styleguide', component: styleGuidePage}, {path: '*', component: p404} ];
+ Schauen Sie sich die Einführung an und lernen Sie mySkillbox kennen. +