Added tag properly so Mastodon will hopefully identify me as me.

This commit is contained in:
Ada Werefox 2023-04-18 20:26:58 -05:00
parent f603b6d7d3
commit 7ff533af57
1 changed files with 3 additions and 1 deletions

View File

@ -3,7 +3,9 @@ use dioxus::prelude::*;
pub fn PageBase<'a>(cx: Scope<'a, PageChildren<'a>>) -> Element {
cx.render(rsx! {
a { rel: "me", href: "https://yiff.life/@werefox", hidden: true, "Mastodon" }
span { hidden: true
a { rel: "me", href: "https://yiff.life/@werefox", "Mastodon" }
}
div { class: "min-h-screen",
div { class: "container space-y-4 mx-auto p-4", &cx.props.children }
}