diff --git a/components/LibraryDirectory.vue b/components/LibraryDirectory.vue index 92e9322..ffd19a3 100644 --- a/components/LibraryDirectory.vue +++ b/components/LibraryDirectory.vue @@ -31,7 +31,7 @@
  • {{ item.label }}
  • -
  • - - -
  • @@ -178,7 +166,7 @@ import { LockClosedIcon, Cog6ToothIcon, FlagIcon, - BellIcon + BellIcon, } from "@heroicons/vue/24/outline"; import type { NavigationItem } from "~/composables/types"; import { useCurrentNavigationIndex } from "~/composables/current-page-engine"; @@ -205,6 +193,12 @@ const navigation: Array = [ prefix: "/admin/settings", icon: Cog6ToothIcon, }, + { + label: "Back", + route: "/", + prefix: ".", + icon: ArrowLeftIcon, + }, ]; const notifications = useNotifications(); diff --git a/pages/admin/index.vue b/pages/admin/index.vue index ca6a7ec..b8321b5 100644 --- a/pages/admin/index.vue +++ b/pages/admin/index.vue @@ -1,6 +1,189 @@ - +