first steps, creating nav bar + inital work on layouts

This commit is contained in:
2026-01-14 19:03:23 -05:00
parent ee5c4f4638
commit 2d2f4c8b89
29 changed files with 6615 additions and 258 deletions

13
src/route.rs Normal file
View File

@@ -0,0 +1,13 @@
use dioxus::prelude::*;
use crate::views::*;
#[derive(Debug, Clone, Routable, PartialEq)]
#[rustfmt::skip]
pub enum Route {
#[layout(NavLayout)]
#[route("/")]
Home {},
#[route("/settings")]
Settings {},
}