| 
									
										
										
										
											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-17 12:34:20 -05:00
										 |  |  |         div { class: "p-4 flex flex-col space-y-4 mx-auto max-w-full justify-center ring-4",
 | 
					
						
							| 
									
										
										
										
											2023-04-16 21:46:10 -05:00
										 |  |  |             NavigationButton { title: "⚙️".to_string(), slug: "/settings".to_string() }
 | 
					
						
							| 
									
										
										
										
											2023-04-17 12:34:20 -05:00
										 |  |  |             div { class: "flex mx-auto max-w-full justify-center text-md text-center",
 | 
					
						
							| 
									
										
										
										
											2023-04-16 21:46:10 -05:00
										 |  |  |                 "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
										 |  |  | }
 |