- Disciplinas
Disciplinas cadastradas na plataforma diff --git a/puma/src/router/index.js b/puma/src/router/index.js index 78e14518..71c78d02 100644 --- a/puma/src/router/index.js +++ b/puma/src/router/index.js @@ -6,10 +6,35 @@ import store from '../store'; Vue.use(VueRouter); const routes = [ + { path: '/', - name: 'Home', - component: () => import('../components/usuario/login-usuario/LoginUsuario.vue'), + name: 'Home Page', + component: () => import('../components/AreaExterna/HomePage.vue'), + meta: { + guest: true, + }, + }, + { + path: '/home/disciplinas', + name: 'Home Disciplinas', + component: () => import('../components/AreaExterna/Disciplinas/Disciplina.vue'), + meta: { + guest: true, + }, + }, + { + path: '/home/sobre', + name: 'Home Sobre', + component: () => import('../components/AreaExterna/Sobre/Sobre.vue'), + meta: { + guest: true, + }, + }, + { + path: '/home/parceiros', + name: 'Home ParceirosProjetos', + component: () => import('../components/AreaExterna/ParceirosEProjetos/ParceirosProjetos.vue'), meta: { guest: true, }, @@ -142,6 +167,11 @@ const routes = [ requiresAuth: true, }, }, + { + path: '/Contato', + name: 'Contato', + component: () => import('../components/AreaExterna/Contato/Contato.vue'), + }, ]; const router = new VueRouter({