move front end files into repo

This commit is contained in:
2025-04-14 21:56:34 -04:00
parent d629ca1dc7
commit 0e714a7ffe
17 changed files with 5742 additions and 74 deletions

View File

@@ -0,0 +1,11 @@
use dioxus::prelude::*;
use crate::{components::Navbar, Route};
#[component]
pub fn MainLayout() -> Element {
rsx! {
Navbar {}
Outlet::<Route> {}
}
}