frontend: separate files

This commit is contained in:
2025-03-31 15:04:11 +03:00
parent 6468d0e9f9
commit b2763b0531
12 changed files with 513 additions and 438 deletions

View File

@@ -0,0 +1,12 @@
use yew::prelude::*;
#[function_component(NotFound)]
pub fn not_found() -> Html {
html!(
<div class="grid-cols-3 place-items-center">
<br/>
<h1 class="font-extrabold text-9xl">{"404"}</h1>
<span class="text-2xl font-normal">{"Не найдено"}</span>
</div>
)
}