From ac4bf4e210c932b55ea57bba3827edc469bd5d7c Mon Sep 17 00:00:00 2001 From: suricatingss Date: Fri, 28 Nov 2025 22:15:01 +0000 Subject: [PATCH] sidebar works --- app/assets/css/global.css | 3 +- app/components/sidebar.vue | 91 ++++++++++++++++++++++++++++++++++++++ app/layouts/dashboard.vue | 7 +++ app/pages/dashy.vue | 12 +++++ 4 files changed, 112 insertions(+), 1 deletion(-) create mode 100644 app/components/sidebar.vue create mode 100644 app/layouts/dashboard.vue create mode 100644 app/pages/dashy.vue diff --git a/app/assets/css/global.css b/app/assets/css/global.css index a461c50..4119734 100644 --- a/app/assets/css/global.css +++ b/app/assets/css/global.css @@ -1 +1,2 @@ -@import "tailwindcss"; \ No newline at end of file +@import "tailwindcss"; +@import "@nuxt/ui"; \ No newline at end of file diff --git a/app/components/sidebar.vue b/app/components/sidebar.vue new file mode 100644 index 0000000..fc873ce --- /dev/null +++ b/app/components/sidebar.vue @@ -0,0 +1,91 @@ + + + + diff --git a/app/layouts/dashboard.vue b/app/layouts/dashboard.vue new file mode 100644 index 0000000..bb87d88 --- /dev/null +++ b/app/layouts/dashboard.vue @@ -0,0 +1,7 @@ + diff --git a/app/pages/dashy.vue b/app/pages/dashy.vue new file mode 100644 index 0000000..ba728e4 --- /dev/null +++ b/app/pages/dashy.vue @@ -0,0 +1,12 @@ + + + + \ No newline at end of file