From 28f5e8dc27011459aefb10af47219f94d19e4fa4 Mon Sep 17 00:00:00 2001 From: Temmie Date: Fri, 8 Aug 2025 02:01:36 +0200 Subject: [PATCH 01/22] feat: implement a proper navbar --- components/UserInterface/Navbar.vue | 124 +++++++++++++++ layouts/client.vue | 147 +++++++++--------- .../[serverId]/channels/[channelId].vue | 16 +- types/interfaces.ts | 16 ++ 4 files changed, 227 insertions(+), 76 deletions(-) create mode 100644 components/UserInterface/Navbar.vue diff --git a/components/UserInterface/Navbar.vue b/components/UserInterface/Navbar.vue new file mode 100644 index 0000000..9f4ba1d --- /dev/null +++ b/components/UserInterface/Navbar.vue @@ -0,0 +1,124 @@ + + + + + \ No newline at end of file diff --git a/layouts/client.vue b/layouts/client.vue index 800a097..fc525a3 100644 --- a/layouts/client.vue +++ b/layouts/client.vue @@ -1,13 +1,7 @@