From ce02db3cbb658254b868b5d3f4a01513694cdac6 Mon Sep 17 00:00:00 2001 From: Alexis <35.alexis.pele@gmail.com> Date: Tue, 16 Jun 2020 15:34:11 +0200 Subject: [PATCH] - Removed world page for presentation --- client/src/components/global/navbar/navbar.vue | 4 ---- client/src/pages/world-page.vue | 17 ----------------- client/src/routes.js | 4 ---- 3 files changed, 25 deletions(-) delete mode 100644 client/src/pages/world-page.vue diff --git a/client/src/components/global/navbar/navbar.vue b/client/src/components/global/navbar/navbar.vue index bb7e111..ebd62ef 100644 --- a/client/src/components/global/navbar/navbar.vue +++ b/client/src/components/global/navbar/navbar.vue @@ -24,10 +24,6 @@ text: 'Sortilèges', url: '/spells', }, - { - text: 'Monde', - url: '/world', - }, ] } } diff --git a/client/src/pages/world-page.vue b/client/src/pages/world-page.vue deleted file mode 100644 index bc8af31..0000000 --- a/client/src/pages/world-page.vue +++ /dev/null @@ -1,17 +0,0 @@ - - - - - \ No newline at end of file diff --git a/client/src/routes.js b/client/src/routes.js index 0ce34c2..1fa08b2 100644 --- a/client/src/routes.js +++ b/client/src/routes.js @@ -5,7 +5,6 @@ import Index from "./pages/index-page"; import Spells from "./pages/spells-page"; import SchoolSingle from "./pages/schools/single-school-page"; -import World from "./pages/world-page"; // Routes const routes = [ @@ -20,9 +19,6 @@ const routes = [ }, { path: '/school/:id', component: SchoolSingle, props: true - }, - { - path: '/world', component: World, } ];