15 lines
647 B
Rust
15 lines
647 B
Rust
|
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"
|
||
|
}
|
||
|
})
|
||
|
}
|