diff --git a/app/components/global/sidebar/Footer.vue b/app/components/global/sidebar/Footer.vue new file mode 100644 index 0000000..79ab1e4 --- /dev/null +++ b/app/components/global/sidebar/Footer.vue @@ -0,0 +1,18 @@ + + + + diff --git a/app/components/global/sidebar/Menu.vue b/app/components/global/sidebar/Menu.vue new file mode 100644 index 0000000..655ca13 --- /dev/null +++ b/app/components/global/sidebar/Menu.vue @@ -0,0 +1,50 @@ + + + + + diff --git a/app/components/global/sidebar/Sidebar.vue b/app/components/global/sidebar/Sidebar.vue index b3281c9..f5286ed 100644 --- a/app/components/global/sidebar/Sidebar.vue +++ b/app/components/global/sidebar/Sidebar.vue @@ -1,136 +1,32 @@ diff --git a/app/components/global/sidebar/SidebarToggle.vue b/app/components/global/sidebar/Toggle.vue similarity index 65% rename from app/components/global/sidebar/SidebarToggle.vue rename to app/components/global/sidebar/Toggle.vue index 4f03b42..c5973ae 100644 --- a/app/components/global/sidebar/SidebarToggle.vue +++ b/app/components/global/sidebar/Toggle.vue @@ -8,8 +8,9 @@ const { toggleSidebar } = useUiStore() - + diff --git a/app/components/global/user/CTA.vue b/app/components/global/user/CTA.vue index 0dc94ef..88aeee9 100644 --- a/app/components/global/user/CTA.vue +++ b/app/components/global/user/CTA.vue @@ -44,46 +44,43 @@ async function handleLogout() { console.log(error.message) } } - -type AvailableRoutes = "/my" | "/my/settings" | "/about" - -function pushRoute(to: AvailableRoutes) { - router.push({ path: to }) - - closeMenu() -}