use leptos::prelude::*; #[component] pub fn NotFound() -> impl IntoView { view! {

"404"

"Page Not Found"

"The page you are looking for does not exist or has been moved."

"← Back to Dashboard"
} }