Files
httpserver/src/views/home.rs
tomoron 031d0e39df
All checks were successful
build docker container automatically / build (push) Successful in 3m17s
test latest tag
2026-04-17 16:48:15 +02:00

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." }
}
}
}