use leptos::*; /// 404 Not Found Page #[component] pub fn NotFound() -> impl IntoView { view! {

"Uh oh!"
"We couldn't find that page!"

} }