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:
2025-02-06 11:21:12 -05:00
parent 4dfc789f58
commit 56902f1ff2
4 changed files with 2 additions and 2 deletions

10
src/pages/dashboard.rs Normal file
View File

@ -0,0 +1,10 @@
use leptos::prelude::*;
#[component]
pub fn Dashboard() -> impl IntoView {
view! {
<div class="dashboard-container home-component">
<h1 class="dashboard-header">Dashboard</h1>
</div>
}
}

View File

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