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, } ];