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,27 +18,55 @@ pub fn footer(_: &FooterProps) -> Html {
{format!("Blake Rain © {year}")} {format!("Blake Rain © {year}")}
<SizeIndicator /> <SizeIndicator />
</div> </div>
<div class="flex flex-col md:flex-row gap-4 md:gap-3"> <div class="flex flex-col gap-4 md:gap-1 md:items-end">
<Link<Route> classes="hover:text-neutral-50" to={Route::Blog}> <div class="flex flex-col md:flex-row gap-4 md:gap-3">
{"Latest Posts"} <Link<Route> classes="hover:text-neutral-50" to={Route::Blog}>
</Link<Route>> {"Latest Posts"}
<Link<Route> classes="hover:text-neutral-50" to={Route::Disclaimer}> </Link<Route>>
{"Disclaimer"} <Link<Route> classes="hover:text-neutral-50" to={Route::Disclaimer}>
</Link<Route>> {"Disclaimer"}
<a href="https://github.com/BlakeRain" </Link<Route>>
class="hover:text-neutral-50" <a href="https://github.com/BlakeRain"
title="GitHub" class="hover:text-neutral-50"
target="_blank" title="GitHub"
rel="noreferrer"> target="_blank"
{"GitHub"} rel="noreferrer">
</a> {"GitHub"}
<a href="https://mastodonapp.uk/@BlakeRain" </a>
class="hover:text-neutral-50" <a href="https://mastodonapp.uk/@BlakeRain"
title="@BlakeRain@mastodonapp.uk" class="hover:text-neutral-50"
target="_blank" title="@BlakeRain@mastodonapp.uk"
rel="noreferrer"> target="_blank"
{"Mastodon"} rel="noreferrer">
</a> {"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>
</div> </div>
</footer> </footer>