diff --git a/void-fe/src/components/void_page.rs b/void-fe/src/components/void_page.rs index 624d3ad..af011bd 100644 --- a/void-fe/src/components/void_page.rs +++ b/void-fe/src/components/void_page.rs @@ -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 } }