diff --git a/frontend/src/components/layout/AppLayout.vue b/frontend/src/components/layout/AppLayout.vue
index e2239a4..56047ff 100644
--- a/frontend/src/components/layout/AppLayout.vue
+++ b/frontend/src/components/layout/AppLayout.vue
@@ -5,13 +5,11 @@
title="Purrse"
subtitle="Personal Finance"
nav
+ @click="rail = !rail"
+ class="drawer-header"
>
-
+ mdi-chevron-left
@@ -26,7 +24,9 @@
:to="item.route"
:value="item.route"
rounded="xl"
- />
+ >
+ {{ item.title }}
+
@@ -37,7 +37,9 @@
title="Logout"
@click="handleLogout"
rounded="xl"
- />
+ >
+ Logout
+
@@ -179,3 +181,14 @@ function handleLogout() {
router.push('/login')
}
+
+