All checks were successful
build docker container automatically / build (push) Successful in 3m17s
22 lines
605 B
Rust
22 lines
605 B
Rust
use dioxus::prelude::*;
|
|
use crate::Route;
|
|
|
|
#[component]
|
|
pub fn Home() -> Element {
|
|
rsx! {
|
|
div { class : "flex flex-col text-3xl px-2",
|
|
Link {
|
|
to : Route::Upload { },
|
|
class: "height-20px text-blue-700 underline py-1",
|
|
"Upload"
|
|
}
|
|
a {
|
|
class: "height-20px text-blue-700 underline py-1",
|
|
href : "https://git.tmoron.fr/tom ",
|
|
"gitea"
|
|
}
|
|
p { class : "text-sm text-gray-600", "I know, you're impressed by my design skills." }
|
|
}
|
|
}
|
|
}
|