feat: Redesign sidebar to a horizontal top navigation bar and enhance assets view with asset upload, refined filters, and a new grid layout.

This commit is contained in:
xds
2026-02-09 01:52:20 +03:00
parent c73bffc9f4
commit 27337e0ccf
4 changed files with 341 additions and 138 deletions

View File

@@ -12,10 +12,10 @@ const route = useRoute()
</div>
<!-- Main Layout (Sidebar + Content) -->
<div v-else class="flex h-screen bg-slate-900 text-slate-100 font-sans overflow-hidden">
<div v-else class="flex flex-col h-screen bg-slate-900 text-slate-100 font-sans overflow-hidden">
<AppSidebar />
<div class="flex-1 h-full overflow-hidden relative">
<div class="flex-1 w-full overflow-hidden relative">
<RouterView v-slot="{ Component }">
<transition name="fade" mode="out-in">
<component :is="Component" />