From 38bf4ce8c8f828de9709d2ca4b6f3206320360bc Mon Sep 17 00:00:00 2001 From: Christopher Byrd Date: Wed, 8 Jan 2025 12:49:44 -0800 Subject: [PATCH] temporarily updates homepage --- arches_lingo/src/arches_lingo/routes.ts | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/arches_lingo/src/arches_lingo/routes.ts b/arches_lingo/src/arches_lingo/routes.ts index a8d0cdab..3f9835f1 100644 --- a/arches_lingo/src/arches_lingo/routes.ts +++ b/arches_lingo/src/arches_lingo/routes.ts @@ -1,14 +1,14 @@ export const routes = [ - { - path: "/", - name: "root", - component: () => import("@/arches_lingo/pages/HomePage.vue"), - meta: { - shouldShowNavigation: true, - shouldShowHierarchy: false, - requiresAuthentication: true, - }, - }, + // { + // path: "/", + // name: "root", + // component: () => import("@/arches_lingo/pages/HomePage.vue"), + // meta: { + // shouldShowNavigation: true, + // shouldShowHierarchy: false, + // requiresAuthentication: true, + // }, + // }, { path: "/login/:next?", name: "login", @@ -30,7 +30,7 @@ export const routes = [ }, }, { - path: "/schemes", + path: "/", name: "schemes", component: () => import("@/arches_lingo/pages/SchemeList.vue"), meta: { @@ -62,7 +62,7 @@ export const routes = [ ]; export const routeNames = { - root: "root", + root: "schemes", login: "login", search: "search", advancedSearch: "advanced-search",