Add new home views to rustfs-gui (#222)

- Create `Home` component in `components/Home.rs`.
- Create `Navbar` component in `components/navbar.rs`.
- Create `HomeView` component in `views/home.rs`.
- Update `views/mod.rs` to include new views.
- Update routing in `main.rs` to include new routes for `HomeView`.
This commit is contained in:
houseme
2025-02-18 01:29:27 +08:00
committed by GitHub
parent 836956ad87
commit 08bca5a129
10 changed files with 478 additions and 6 deletions
+1
View File
@@ -2,3 +2,4 @@ mod config;
mod helper;
pub use config::RustFSConfig;
pub use helper::ServiceManager;