boilerplate

This commit is contained in:
2026-03-10 14:29:43 +01:00
commit 2d19e3b5d7
23 changed files with 6997 additions and 0 deletions

11
src/views/home.rs Normal file
View File

@ -0,0 +1,11 @@
use dioxus::prelude::*;
use crate::components::{Hero, Echo};
/// The Home page component that will be rendered when the current route is `[Route::Home]`
#[component]
pub fn Home() -> Element {
rsx! {
Hero {}
Echo {}
}
}