feat: homepage initialization, components, css, motion

This commit is contained in:
2025-05-23 17:15:32 +02:00
parent 0587099cf7
commit 6afec1f452
22 changed files with 406 additions and 229 deletions

9
src/pages/contact.rs Normal file
View File

@@ -0,0 +1,9 @@
use dioxus::prelude::*;
/// Contact page
#[component]
pub fn Contact() -> Element {
rsx! {
div { "Contact" }
}
}