info-werefox-cafe/void-fe/src/components/void_footer.rs

15 lines
647 B
Rust
Raw Normal View History

use dioxus::prelude::*;
pub fn Footer(cx: Scope) -> Element {
cx.render(rsx!{
MutantStandardFooter {}
})
}
fn MutantStandardFooter(cx: Scope) -> Element {
cx.render(rsx!{
div { class: "flex p-4 mx-auto max-w-full justify-center text-md text-center ring-4 bg-alice-werefox-grey-lightest dark:bg-alice-werefox-grey-dark ring-alice-werefox-red-dark dark:ring-alice-werefox-red text-alice-werefox-grey-dark dark:text-alice-werefox-grey-light",
"This site uses Mutant Standard emoji, which are licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License"
}
})
}