Move dashboard to pages
All checks were successful
Push Workflows / clippy (push) Successful in 58s
Push Workflows / leptos-test (push) Successful in 1m28s
Push Workflows / test (push) Successful in 2m2s
Push Workflows / docs (push) Successful in 2m26s
Push Workflows / build (push) Successful in 2m52s
Push Workflows / docker-build (push) Successful in 8m39s
Push Workflows / nix-build (push) Successful in 22m8s

This commit is contained in:
Ethan Girouard 2025-02-06 11:21:12 -05:00
parent 4dfc789f58
commit 56902f1ff2
Signed by: eta357
GPG Key ID: 7BCDC36DFD11C146
4 changed files with 2 additions and 2 deletions

View File

@ -12,6 +12,7 @@ use crate::pages::albumpage::*;
use crate::pages::artist::*;
use crate::pages::songpage::*;
use crate::pages::search::*;
use crate::pages::dashboard::*;
use crate::components::error_template::{AppError, ErrorTemplate};
use crate::util::state::GlobalState;
@ -82,7 +83,6 @@ pub fn App() -> impl IntoView {
}
use crate::components::sidebar::*;
use crate::components::dashboard::*;
use crate::components::personal::Personal;
use crate::components::upload::*;
use crate::components::add_artist::AddArtist;

View File

@ -1,5 +1,4 @@
pub mod sidebar;
pub mod dashboard;
pub mod personal;
pub mod dashboard_tile;
pub mod dashboard_row;

View File

@ -5,3 +5,4 @@ pub mod albumpage;
pub mod artist;
pub mod songpage;
pub mod search;
pub mod dashboard;