2023-04-13 12:51:25 -05:00
|
|
|
use dioxus::prelude::*;
|
2023-04-16 21:46:10 -05:00
|
|
|
use crate::components::void_buttons::NavigationButton;
|
2023-04-13 12:51:25 -05:00
|
|
|
|
|
|
|
pub fn Footer(cx: Scope) -> Element {
|
2023-04-16 21:46:10 -05:00
|
|
|
cx.render(rsx! {
|
2023-04-13 12:51:25 -05:00
|
|
|
MutantStandardFooter {}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn MutantStandardFooter(cx: Scope) -> Element {
|
|
|
|
cx.render(rsx!{
|
2023-04-16 21:46:10 -05:00
|
|
|
div {
|
|
|
|
NavigationButton { title: "⚙️".to_string(), slug: "/settings".to_string() }
|
|
|
|
div {
|
|
|
|
"This site uses Mutant Standard emoji, which are licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License"
|
|
|
|
}
|
2023-04-13 12:51:25 -05:00
|
|
|
}
|
|
|
|
})
|
2023-04-16 21:46:10 -05:00
|
|
|
}
|