diff --git a/dashboard/src/components/dashboard/GuildAccess.vue b/dashboard/src/components/dashboard/GuildAccess.vue new file mode 100644 index 00000000..580a5951 --- /dev/null +++ b/dashboard/src/components/dashboard/GuildAccess.vue @@ -0,0 +1,8 @@ + + + Guild Access + + Or here + + + diff --git a/dashboard/src/components/dashboard/GuildInfo.vue b/dashboard/src/components/dashboard/GuildInfo.vue new file mode 100644 index 00000000..28694aec --- /dev/null +++ b/dashboard/src/components/dashboard/GuildInfo.vue @@ -0,0 +1,8 @@ + + + Guild Info + + What are you doing here + + + diff --git a/dashboard/src/img/squint.png b/dashboard/src/img/squint.png new file mode 100644 index 00000000..3ca39eda Binary files /dev/null and b/dashboard/src/img/squint.png differ diff --git a/dashboard/src/routes.ts b/dashboard/src/routes.ts index 1023d49c..1ca49ee8 100644 --- a/dashboard/src/routes.ts +++ b/dashboard/src/routes.ts @@ -64,10 +64,18 @@ export const router = new VueRouter({ path: "", component: () => import("./components/dashboard/GuildList.vue"), }, + { + path: "guilds/:guildId/info", + component: () => import("./components/dashboard/GuildInfo.vue"), + }, { path: "guilds/:guildId/config", component: () => import("./components/dashboard/GuildConfigEditor.vue"), }, + { + path: "guilds/:guildId/access", + component: () => import("./components/dashboard/GuildAccess.vue"), + }, ], }, ],
+ Or here +
+ What are you doing here +