use yew::prelude::*; use yew_styles::layouts::{ container::{Container, Direction, Wrap}, item::{Item, ItemLayout}, }; pub struct Home; impl Component for Home { type Message = (); type Properties = (); fn create(_: Self::Properties, _: ComponentLink) -> Self { Home {} } fn update(&mut self, _: Self::Message) -> ShouldRender { false } fn change(&mut self, _: Self::Properties) -> ShouldRender { false } fn view(&self) -> Html { html! {

{"Welcome to my website"}

{r#" I'm a german software developer working on way too many projects at once. I primarily use Rust because it's just the best programming language. "#}

} } }