Switch over to WebAssembly, Rust and Yew #35

Merged
BlakeRain merged 87 commits from yew-static into main 2023-08-30 18:01:40 +00:00
Showing only changes of commit 4eef563d47 - Show all commits

View File

@ -18,6 +18,7 @@ pub fn footer(_: &FooterProps) -> Html {
{format!("Blake Rain © {year}")}
<SizeIndicator />
</div>
<div class="flex flex-col gap-4 md:gap-1 md:items-end">
<div class="flex flex-col md:flex-row gap-4 md:gap-3">
<Link<Route> classes="hover:text-neutral-50" to={Route::Blog}>
{"Latest Posts"}
@ -40,6 +41,33 @@ pub fn footer(_: &FooterProps) -> Html {
{"Mastodon"}
</a>
</div>
<div>
{"Powered by "}
<a href="https://yew.rs"
class="hover:text-neutral-50"
title="Yew Web Framework"
target="_blank"
rel="noreferrer">
{"Yew"}
</a>
{", "}
<a href="https://www.rust-lang.org/"
class="hover:text-neutral-50"
title="Rust Programming Language"
target="_blank"
rel="noreferrer">
{"Rust"}
</a>
{", and "}
<a href="https://webassembly.org/"
class="hover:text-neutral-50"
title="WebAssembly"
target="_blank"
rel="noreferrer">
{"WebAssembly"}
</a>
</div>
</div>
</div>
</footer>
}