feat: added an impress
Build and Deploy / build-docker (push) Successful in 7m34s Details

This commit is contained in:
antifallobst 2023-12-07 17:01:04 +01:00
parent b989dc06d7
commit af1a045464
Signed by: antifallobst
GPG Key ID: 2B4F402172791BAF
4 changed files with 22 additions and 1 deletions

16
src/content/impress.rs Normal file
View File

@ -0,0 +1,16 @@
use yew::prelude::*;
#[function_component]
pub fn Impress() -> Html {
html! {
<div class="content">
<p class="content-box-heading">{"Impress / Impressum"}</p>
<div class="content-box-data">
<p>{
"This website is hosted in germany. By the german law websites that are for private use don't require an impress. \
This is neither a commercial site nor are our non-profit services available to the public at the moment."
}</p>
</div>
</div>
}
}

View File

@ -1,4 +1,5 @@
pub mod about; pub mod about;
pub mod error; pub mod error;
pub mod home; pub mod home;
pub mod impress;
pub mod profile; pub mod profile;

View File

@ -3,7 +3,7 @@ mod content;
mod topbar; mod topbar;
use backend::Session; use backend::Session;
use content::{about::About, error, home::Home, profile::Profile}; use content::{about::About, error, home::Home, impress::Impress, profile::Profile};
use gloo::dialogs::alert; use gloo::dialogs::alert;
use gloo_storage::{SessionStorage, Storage}; use gloo_storage::{SessionStorage, Storage};
use std::ops::Deref; use std::ops::Deref;
@ -21,6 +21,8 @@ enum Route {
Community, Community,
#[at("/about")] #[at("/about")]
About, About,
#[at("/impress")]
Impress,
#[at("/profile/:username")] #[at("/profile/:username")]
Profile { username: String }, Profile { username: String },
#[not_found] #[not_found]
@ -34,6 +36,7 @@ fn switch(routes: Route) -> Html {
Route::Services => html! {<h1>{ "Services" }</h1>}, Route::Services => html! {<h1>{ "Services" }</h1>},
Route::Community => html! {<h1>{ "Community" }</h1>}, Route::Community => html! {<h1>{ "Community" }</h1>},
Route::About => html! {<About/>}, Route::About => html! {<About/>},
Route::Impress => html! { <Impress/>},
Route::Profile { username } => html! { <Profile username={username}/> }, Route::Profile { username } => html! { <Profile username={username}/> },
Route::NotFound => html! { <error::NotFound/> }, Route::NotFound => html! { <error::NotFound/> },
} }

View File

@ -77,6 +77,7 @@ pub fn TopBar() -> Html {
<li><a href="/services"><Tab text="Services" /></a></li> <li><a href="/services"><Tab text="Services" /></a></li>
<li><a href="/community"><Tab text="Community" /></a></li> <li><a href="/community"><Tab text="Community" /></a></li>
<li><a href="/about"><Tab text="About" /></a></li> <li><a href="/about"><Tab text="About" /></a></li>
<li><a href="/impress"><Tab text="Impress" /></a></li>
</ul> </ul>
<ul id="tabs-account" class="tabs"> <ul id="tabs-account" class="tabs">