feat: remove status bar from layout
All checks were successful
Build MIPS Binary / build (push) Successful in 5m21s

This commit is contained in:
spinline
2026-02-12 21:38:25 +03:00
parent 1156f0a111
commit 5449651db6
3 changed files with 0 additions and 206 deletions

View File

@@ -1,7 +1,6 @@
use leptos::prelude::*;
use crate::components::layout::sidebar::Sidebar;
use crate::components::layout::toolbar::Toolbar;
use crate::components::layout::statusbar::StatusBar;
use crate::components::ui::sidenav::{SidenavWrapper, Sidenav, SidenavInset};
#[component]
@@ -22,9 +21,6 @@ pub fn Protected(children: Children) -> impl IntoView {
<main class="flex-1 overflow-hidden relative bg-background">
{children()}
</main>
// Alt Bar
<StatusBar />
</SidenavInset>
</SidenavWrapper>
}